Skip to content

Commit 6aca5e8

Browse files
committedApr 7, 2025·
update project structure
1 parent 70da5f0 commit 6aca5e8

File tree

1 file changed

+25
-8
lines changed

1 file changed

+25
-8
lines changed
 

‎.cursor/rules/project-structure.mdc

+25-8
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,31 @@ alwaysApply: false
1616
.
1717
├── apps
1818
│ ├── web/ # Main Next.js application
19-
│ │ ├── app/ # Next.js App Router (pages, layouts, api routes)
20-
│ │ ├── components/ # React components
21-
│ │ │ ├── ui/ # Shadcn UI components
22-
│ │ │ ├── email-list/ # Email list related components
23-
│ │ │ ├── editor/ # Editor related components
24-
│ │ │ ├── charts/ # Chart components
25-
│ │ │ ├── layouts/ # Layout components
26-
│ │ │ └── *.tsx # Other feature components
19+
│ │ ├── app/ # Next.js App Router
20+
│ │ │ ├── (app)/ # Main application routes
21+
│ │ │ │ ├── automation/ # AI assistant feature
22+
│ │ │ │ ├── reply-zero/ # Reply Zero feature
23+
│ │ │ │ ├── settings/ # User settings
24+
│ │ │ │ ├── setup/ # Main onboarding
25+
│ │ │ │ ├── clean/ # Bulk email cleanup
26+
│ │ │ │ ├── smart-categories/ # Smart sender categorization
27+
│ │ │ │ ├── bulk-unsubscribe/ # Bulk unsubscribe
28+
│ │ │ │ ├── stats/ # Email analytics
29+
│ │ │ │ ├── mail/ # Email client (in beta)
30+
│ │ │ │ └── ... (other app routes)
31+
│ │ │ ├── api/ # API Routes
32+
│ │ │ │ ├── knowledge/ # Knowledge base API
33+
│ │ │ │ ├── reply-tracker/ # Reply tracking
34+
│ │ │ │ ├── clean/ # Cleanup API
35+
│ │ │ │ ├── ai/ # AI features API
36+
│ │ │ │ ├── user/ # User management
37+
│ │ │ │ ├── google/ # Google integration
38+
│ │ │ │ ├── auth/ # Authentication
39+
│ │ │ │ └── ... (other APIs)
40+
│ │ │ ├── (landing)/ # Marketing/landing pages
41+
│ │ │ ├── blog/ # Blog pages
42+
│ │ │ ├── layout.tsx # Root layout
43+
│ │ │ └── ... (other app files)
2744
│ │ ├── utils/ # Utility functions and helpers
2845
│ │ │ ├── actions/ # Server actions
2946
│ │ │ ├── ai/ # AI-related utilities

1 commit comments

Comments
 (1)

vercel[bot] commented on Apr 7, 2025

@vercel[bot]
Please sign in to comment.