Overview
This article provides an introduction to a Next.js project that is bootstrapped with create-next-app. It includes instructions on how to run the development server and edit the page. The project also utilizes next/font to optimize and load a custom Google Font. Additionally, the article mentions resources for learning more about Next.js and provides information on deploying the app using the Vercel platform.
Features
- Next.js project bootstrapped with create-next-app.
- Development server for running the project.
- Ability to edit the page by modifying the app/page.js file.
- Utilizes next/font to optimize and load a custom Google Font.
- Resources for learning more about Next.js, including documentation and tutorials.
- Ability to deploy the app using Vercel platform.
Installation
To install and run the Next.js project, follow these steps:
- Clone the project repository.
- Open the terminal and navigate to the project directory.
- Run the following command to install the required dependencies:
npm install
- Once the installation is complete, run the development server with the following command:
npm run dev
- Open your browser and enter the following URL to see the result:
http://localhost:3000
- You can now start editing the page by modifying the app/page.js file. The page will auto-update as you edit the file.
Summary
This article introduces a Next.js project bootstrapped with create-next-app. It provides instructions on how to install and run the project, as well as how to edit the page. The project utilizes next/font to optimize and load a custom Google Font. Additionally, the article includes information on learning more about Next.js and deploying the app using the Vercel platform.