πFolder Structure
The Light Able folder structure is meticulously organized to enhance project scalability and maintainability. With directories for routes, controllers, assets, views, and configuration settings
βββ π public
| βββ next.svg
| βββ
vercel.html
βββ π src
| βββ π app
| | βββ
favicon.ico
| | βββ
layout.tsx
| | βββ
page.module.css
| |
| βββ π assets
| | βββ π font
| | βββ π images
| | βββ π scss
| |
| βββ π Common
| | βββ π JsonData
| | βββ
BreadcrumbItem.tsx
| | βββ
DeleteModal.tsx
| | βββ
Filter.tsx
| | βββ
layoutConfig.ts
| | βββ
TableContainer.tsx
| |
| βββ π Layouts
| | βββ
Footer.tsx
| | βββ
FooterBlock.tsx
| | βββ
Header.tsx
| | βββ
index.tsx
| | βββ
MenuData.tsx
| | βββ
NonLayout.tsx
| | βββ
RightCustomizer.tsx
| | βββ
Sidebar.tsx
| | βββ
Topbar.tsx
| |
| βββ π pages
| | βββ π application
| | βββ π chart
| | βββ π elements
| | βββ π forms
| | βββ π other
| | βββ π pages
| | βββ π table
| | βββ π ui-kit
| | βββ π widget
| | βββ
_app.tsx
| | βββ
_document.tsx
| | βββ
index.js
| |
| βββ π toolkit
| | βββ π Calendar
| | βββ π Chat
| | βββ π E-commerce
| | βββ π Email
| | βββ π themeLayouts
| | βββ
index.ts
| | βββ
thunk.ts
| |
| βββ π views
| | βββ π Application
| | βββ π Chart
| | βββ π Dashboard
| | βββ π Forms
| | βββ π Landing
| | βββ π Maps
| | βββ π Table
| | βββ π Widgets
|
βββ
.eslintrc.json
βββ
.gitingore
βββ
global.d.ts
βββ
next-env.d.ts
βββ
next.config.js
βββ
package.json
βββ
README.md
βββ
tsconfig.json
βββ
yarn.lock
Light Able Next.js Folders Structure
πLight Able
root:
The main folder of our project.
πpublic
public/
Contains static assets like next.svg and vercel.svg
π src
src/
Contains next.js components, routers, layouts etc.
Last updated