Coding sample for Getting Started with NextJS documentation page. Next.js is a React framework that provides additional structure, features, and optimizations for your application. Created by Vercel, it enables you to build full-stack web applications by extending React's capabilities with server-side functionality.
👉 Get Support via
Discord
- First clone the GitHub repository and navigate into the project folder:
$ git clone https://github.com/app-generator/core-nextjs.git
$ cd core-nextjs
- Next, install dependencies:
$ npm install
# or
$ yarn install
- Finally, run the development server:
$ npm run dev
# or
$ yarn dev
# or
$ pnpm dev
# or
$ bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project includes shadcn integration, providing you with fully customizable UI components to kickstart your development.
To add more shadcn/ui components, use the following command:
$ npx shadcn add <component-name>
Getting Started with NextJS - Coding sample provided by App Generator