This is the landing page for Devup API, built with Next.js and Devup UI.
- Next.js 15+ - React framework with App Router
- Devup UI - Zero-runtime CSS-in-JS styling library
- TypeScript - Type safety
- React 19 - Latest React features
npm install
# or
pnpm install
# or
yarn installnpm run devOpen http://localhost:3000 to see the landing page.
npm run buildThis will generate a static export in the out/ directory.
npm run startlanding/
├── public/ # Static assets
├── src/
│ ├── app/ # Next.js App Router
│ │ ├── layout.tsx
│ │ ├── page.tsx
│ │ ├── Hero.tsx
│ │ ├── Features.tsx
│ │ ├── CodeExamples.tsx
│ │ ├── Packages.tsx
│ │ └── Footer.tsx
│ └── components/ # Reusable components
├── devup.json # Devup UI theme configuration
├── next.config.ts # Next.js configuration
├── tsconfig.json # TypeScript configuration
└── package.json
Edit devup.json to customize colors, typography, spacing, and breakpoints.
- Hero Section:
src/app/Hero.tsx - Features:
src/app/Features.tsx - Code Examples:
src/app/CodeExamples.tsx - Packages:
src/app/Packages.tsx - Footer:
src/app/Footer.tsx