This document provides an overview of the StellarLift project structure and its main components.
CONTRIBUTING.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
README.md
tailwind.config.js
tsconfig.json
app/
globals.css
layout.tsx
page.tsx
dashboard/
page.tsx
profile/
page.tsx
projects/
page.tsx
[id]/
page.tsx
components/
DripCard.tsx
Footer.tsx
Navbar.tsx
ProjectCard.tsx
lib/
mockData.ts
stellar.ts
store.ts
utils.ts
- app/: Contains main application pages and layouts, including dashboard, profile, and projects (with dynamic routing for project IDs).
- components/: Reusable React components such as Navbar, Footer, DripCard, and ProjectCard.
- lib/: Utility and data files, including mock data, store management, and helper functions.
- package.json: Project dependencies and scripts.
- tailwind.config.js: Tailwind CSS configuration.
- tsconfig.json: TypeScript configuration.
- Install dependencies:
npm install
- Run the development server:
npm run dev
See CONTRIBUTING.md for guidelines.
This file was auto-generated to provide a quick reference for the codebase structure and main files.