This is a Next.js boilerplate project bootstrapped with create-next-app
. It provides a basic setup to quickly start building Next.js applications.
Key features:
- Next.js: Utilizes the Next.js framework for React development, offering features like server-side rendering, static site generation, and routing.
- CSS Modules: Implements CSS Modules for styling components, ensuring CSS encapsulation and avoiding naming conflicts.
create-next-app
: Uses thecreate-next-app
CLI tool for easy project setup and configuration.- Geist Font: Includes and optimizes the Geist font family for Vercel using
next/font
.
Getting Started:
- Run the development server using
npm run dev
,yarn dev
,pnpm dev
, orbun dev
. - Open
http://localhost:3000
in your browser to view the application. - Modify
app/page.tsx
to start editing the page; changes will auto-update.