-
Use the correct Node version, so install NVM first Open NVM Github
-
Use NVM to use the correct Node version for this project, which will be 20.+ Since we have a
.nvmrc
file in the project you can just run:
nvm use
And nvm will pick the .nvmrc
file and switch to the correct Node version.
- Install all the node packages needed by running:
npm i
- Install the Talwind extension for VSCode Tailwind CSS IntelliSense
Run the development server:
npm run dev
Open http://localhost:3000 with your browser to see the result.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
Navigate to Shadcn component UI library
Select the component you want to use
Add the component to the UI components in the project by running:
npx shadcn-ui@latest add button
In which button is the component you want to add. The component will be added to the /components/ui/
directory.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.