Lightweight marketing site for Gamistar built with Next.js 15 and React 19. The project now focuses on public, static content only—no authentication layers or database connections are required.
- Landing page with hero, product overview, and contact calls‑to‑action
- Public company pages (enterprise program and support center)
- Blog with MDX-powered posts
- Changelog with MDX release notes
- Node.js 20+
- pnpm (recommended) or npm
pnpm install
pnpm devThe site is available at http://localhost:3000.
pnpm build– production buildpnpm lint– run lint checkspnpm prettier-fix– format files with Prettier
├── app/ # Next.js App Router routes
│ ├── blog/ # Blog listing and MDX posts
│ ├── changelog/ # Changelog listing and MDX entries
│ ├── enterprise/ # Enterprise public page
│ ├── support/ # Support center content (MDX)
│ ├── layout.tsx # Global layout (no auth state)
│ └── page.tsx # Landing page
├── components/ # Reusable UI and layout components
├── public/ # Static assets
├── styles/ # Tailwind and global styles
├── utils/ # Blog/changelog helpers, SEO utilities
└── documentation/ # Additional product collateral
Designed to deploy on any Next.js-compatible platform (Vercel recommended). No environment variables are required beyond the defaults generated by Next.js.
- Create a feature branch (
git checkout -b feature-name) - Install dependencies and make changes
- Run
pnpm lintbefore submitting a PR - Open a pull request describing the changes and any skipped checks