Specifying Project Structures
Building out projects structures using AI
├── components
│ ├── Button.js
│ ├── Card.js
│ └── ...
├── features
│ ├── auth
│ │ ├── components
│ │ ├── pages
│ │ └── utils
│ ├── profile
│ │ ├── components
│ │ ├── pages
│ │ └── utils
│ └── ...
├── pages
│ ├── index.js
│ ├── _app.js
│ └── ...
├── public
│ ├── images
│ ├── favicon.ico
│ └── ...
├── utils
│ ├── api.js
│ ├── auth.js
│ └── ...
├── .env.local
├── .gitignore
├── next.config.js
├── package.json
├── README.md
└── yarn.lockLast updated