Core Concepts

Project Structure

Every generated project follows a clean, consistent structure. Learn how project codebases are organized, where to find components, pages, and styles, and how to extend them locally.

Meku generates a clean, consistent project structure for every prompt. This structure makes it easy to navigate, edit, and extend the app locally or in GitHub.

Below is an example project structure generated from a dashboard prompt from the " How Meku Works" section.

my-project/
├── src/
│ ├── components/
│ │ ├── AnalyticsCard.jsx
│ │ ├── Footer.jsx
│ │ ├── Navbar.jsx
│ │ └── Sidebar.jsx
│ ├── pages/
│ │ ├── Home.jsx
│ │ └── NotFound.jsx
│ ├── App.jsx
│ ├── index.html
│ └── index.jsx
├── package.json
├── postcss.config.mjs

Last updated: July 30, 2026