Skip to content

Commit 5b8537b

Browse files
Update settingUp.md
1 parent 6e7e52a commit 5b8537b

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

courses/Next.Js/beginner-level/Introduction/settingUp.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,29 @@ To get started with Next.js, you'll need Node.js and npm (or yarn) installed on
3636
- Open your browser and navigate to [http://localhost:3000](http://localhost:3000) to see your Next.js application running.
3737

3838

39-
![Screenshot from 2024-07-20 07-58-50](https://github.com/user-attachments/assets/5dbec61f-cd1f-458f-9856-e8f9d82af8de)
39+
![Screenshot from 2024-07-20 07-58-50](https://github.com/user-attachments/assets/5dbec61f-cd1f-458f-9856-e8f9d82af8de)
40+
41+
5. **Explore the Project Structure**:
42+
43+
- Next.js projects have the following structure:
44+
```
45+
my-next-app/
46+
├── .next/ # Build output
47+
├── node_modules/ # Node.js modules
48+
├── pages/ # Pages and routes
49+
├── public/ # Static assets
50+
├── styles/ # Global styles
51+
├── .gitignore # Git ignore file
52+
├── package.json # Project metadata
53+
├── README.md # Project README
54+
```
55+
56+
6. **Start Building Your Next.js Application**:
57+
58+
- You're now ready to start building your Next.js application. Explore the project structure, create new pages, and customize your application as needed.
59+
60+
By following these steps, you can set up a development environment for building Next.js applications and start creating modern web experiences with ease. Happy coding!
61+
62+
## Additional Resources:
63+
64+
- [Next.js Documentation](https://nextjs.org/docs)

0 commit comments

Comments
 (0)