Marketing and product materials for FinanceOS platform, hosted on Vercel.
- Install dependencies:
npm install- Run the development server:
npm run dev- Open http://localhost:3000 in your browser.
npm run build
npm start- Install Vercel CLI (if not already installed):
npm i -g vercel- Login to Vercel:
vercel login- Deploy:
vercel- For production deployment:
vercel --prod- Push your code to GitHub/GitLab/Bitbucket
- Go to vercel.com
- Click "New Project"
- Import your repository
- Vercel will automatically detect Next.js and configure the project
- Click "Deploy"
├── app/ # Next.js app directory
│ ├── layout.tsx # Root layout
│ ├── page.tsx # Home page
│ ├── globals.css # Global styles
│ └── [routes]/ # Individual page routes
├── components/ # React components
│ ├── all_app_onepagers.tsx
│ ├── marketing_guide.tsx
│ ├── three_capabilities.tsx
│ └── *_spec.tsx # App specifications
├── package.json
├── tsconfig.json
├── next.config.js
├── tailwind.config.js
└── vercel.json # Vercel configuration
/- Home page with navigation/all-app-onepagers- All app one-pagers/marketing-guide- Marketing guide/three-capabilities- Three capabilities overview/fastclose-spec- FastClose specification/autoreconcile-spec- AutoReconcile specification/budgetwatch-spec- BudgetWatch specification/cashcollector-spec- CashCollector specification/cashforecaster-spec- CashForecaster specification/dataaccuracy-spec- DataAccuracy specification/fraudwatch-spec- FraudWatch specification/journalguard-spec- JournalGuard specification/policyguard-spec- PolicyGuard specification
- Next.js 14 - React framework
- TypeScript - Type safety
- Tailwind CSS - Styling
- Lucide React - Icons
No environment variables are currently required. If you need to add any, create a .env.local file (not committed to git).