landing/README.md
Landing page for voicebox.sh - a modern Next.js 16 application.
cd landing
bun install
bun run dev
Open http://localhost:3000 to view the landing page.
bun run build
bun run start
Edit src/lib/constants.ts to update:
LATEST_VERSION - Current release versionDOWNLOAD_LINKS - GitHub release download URLsGITHUB_REPO - Repository URLReplace USERNAME in src/lib/constants.ts with your actual GitHub username.
nixpacks.tomllanding/bun installbun run buildbun run startvoicebox.sh in Railway settingslanding/
├── src/
│ ├── app/
│ │ ├── layout.tsx # Root layout with metadata
│ │ ├── page.tsx # Landing page
│ │ └── globals.css # Global styles
│ ├── components/
│ │ ├── Header.tsx # Top navigation
│ │ ├── Footer.tsx # Footer
│ │ ├── DownloadSection.tsx # Download buttons
│ │ └── ui/ # shadcn/ui components
│ └── lib/
│ ├── utils.ts # Utility functions
│ └── constants.ts # App constants
├── public/
│ └── voicebox-logo.png # Logo asset
└── nixpacks.toml # Railway deployment config