Project Structures
Building out your project's structure for maintainability and efficiency using AI
my-nextjs-chakra-app/
├── components/
│ ├── Button/
│ │ ├── index.jsx
│ │ └── styles.js
│ ├── Footer/
│ │ ├── index.jsx
│ │ └── styles.js
│ ├── Header/
│ │ ├── index.jsx
│ │ └── styles.js
│ └── Card/
│ ├── index.jsx
│ └── styles.js
├── pages/
│ ├── _app.js
│ ├── index.jsx
│ └── about.jsx
├── public/
│ └── assets/
│ ├── images/
│ └── styles/
├── styles/
│ ├── global.js
│ └── theme.js
├── utils/
│ └── api.js
├── .babelrc
├── .eslintrc
├── .gitignore
├── package.json
├── README.md
└── yarn.lockLast updated