-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathrepo_structure.txt
102 lines (102 loc) · 3.09 KB
/
repo_structure.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING .md
├── Dockerfile
├── LICENSE
├── PROJECT_STRUCTURE.md
├── README.md
├── SECURITY.md
├── app/
│ ├── (auth)/
│ │ ├── sign-in/
│ │ │ └── [[...sign-in]]/
│ │ │ └── page.tsx
│ │ └── sign-up/
│ │ └── [[...sign-up]]/
│ │ └── page.tsx
│ ├── (context)/
│ │ ├── TotalUsageContext.tsx
│ │ ├── UpdateCreditUsageContext.tsx
│ │ └── UserSubscriptionContext.tsx
│ ├── (data)/
│ │ └── Template.tsx
│ ├── api/
│ │ └── crate-subscription/
│ │ └── route.js
| |── contributors/
│ │ └── page.tsx
│ ├── dashboard/
│ │ ├── _components/
│ │ │ ├── Header.tsx
│ │ │ ├── MobileSidebar.tsx
│ │ │ ├── SearchSection.tsx
│ │ │ ├── SideNav.tsx
│ │ │ ├── TemplateCard.tsx
│ │ │ ├── TemplateListSection.tsx
│ │ │ └── UsageTrack.tsx
│ │ ├── billing/
│ │ │ └── page.tsx
│ │ ├── content/
│ │ │ └── [template-slug]/
│ │ │ ├── _components/
│ │ │ │ ├── FromSection.tsx
│ │ │ │ └── OutputSection.tsx
│ │ │ └── page.tsx
│ │ ├── history/
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── favicon.ico
│ ├── fonts/
│ │ ├── GeistMonoVF.woff
│ │ └── GeistVF.woff
│ ├── globals.css
│ ├── layout.tsx
│ ├── metadata.tsx
│ ├── not-found.tsx
│ └── page.tsx
├── button.tsx
├── components/
│ ├── ChatbaseEmbed.tsx
│ ├── public-footer.tsx
│ ├── public-header.tsx
│ └── ui/
│ ├── background-beams.tsx
│ ├── button.tsx
│ ├── card.tsx
│ ├── faq.tsx
│ ├── input.tsx
│ ├── pricing.tsx
│ ├── review.tsx
│ ├── sheet.tsx
│ ├── test.tsx
│ ├── textarea.tsx
│ └── typewriter-effect.tsx
├── components.json
├── docker-compose.yml
├── drizzle.config.js
├── global.d.ts
├── lib/
│ └── utils.ts
├── middleware.ts
├── next.config.mjs
├── package-lock.json
├── package.json
├── page.tsx
├── postcss.config.mjs
├── public/
│ ├── Liam.jpg
│ ├── ava.jpg
│ ├── james.jpg
│ ├── logo.svg
│ ├── robots.txt
│ ├── sitemap.xml
│ ├── sophia.jpg
│ └── zara.jpg
├── repo_structure.txt
├── tailwind.config.ts
├── tsconfig.json
├── utils/
│ ├── AiModal.tsx
│ ├── db.tsx
│ └── schema.tsx
└── vercel.json