Starter codebase for Nextjs using Typescript and Tailwind Components
- 🔥 Next.js for Static Site Generator
- 🎨 Uses Tailwind CSS and Tailwind Components
- 🎉 Type checking TypeScript
- 🤖 SEO metadata, JSON-LD and Open Graph tags with Next SEO
- ☕ Minify HTML & CSS
- 💨 Live reload
- ✅ Cache busting
- Navbar
- Banner
- Features
- Footer
- Layout
- Node.js and npm
- Clone the repo
- Install dependencies by running the command in the repo
npm install
- Then, you can run locally in development mode with live reload:
npm run dev
- Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying pages/index.tsx
. The page auto-updates as you edit the file.
API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.ts
.
The pages/api
directory is mapped to /api/*
. Files in this directory are treated as API routes instead of React pages.
.
├── README.md # README file
├── next.config.js # Next JS configuration
├── public # Public folder
├── components # Components
├── layout # Atomic layout component
├── pages # Next JS pages
├── styles # PostCSS style folder with Tailwind
├── utils # Utility folder
├── tailwind.config.js # Tailwind CSS configuration
└── tsconfig.json # TypeScript configuration