-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure.txt
More file actions
69 lines (69 loc) · 1.74 KB
/
structure.txt
File metadata and controls
69 lines (69 loc) · 1.74 KB
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
portfilio-generator/
├─ components.json
├─ Contributing.md
├─ eslint.config.mjs
├─ middleware.ts
├─ next-env.d.ts
├─ next.config.ts
├─ package.json
├─ postcss.config.mjs
├─ postman_collection.json
├─ README.md
├─ tsconfig.json
├─ app/
│ ├─ globals.css
│ ├─ layout.tsx
│ ├─ page.tsx
│ ├─ [slug]/
│ │ └─ page.tsx
│ ├─ api/
│ │ ├─ test/
│ │ │ └─ route.ts
│ │ ├─ v1/
│ │ │ ├─ ai/
│ │ │ │ └─ parse/
│ │ │ │ └─ route.ts
│ │ │ ├─ auth/
│ │ │ │ └─ register/
│ │ │ │ └─ route.ts
│ │ │ └─ user/
│ │ │ ├─ route.ts
│ │ │ ├─ [slug]/
│ │ │ │ └─ route.ts
│ │ │ └─ fetchportfolio/
│ │ │ └─ route.ts
│ │ └─ v2/
│ ├─ create/
│ │ └─ portfolio/
│ │ └─ page.tsx
│ ├─ getportfolio/
│ │ └─ page.tsx
│ └─ preview/
│ └─ portfolio/
│ └─ page.tsx
├─ components/
│ ├─ AuthProvider.ts
│ ├─ layout/
│ │ ├─ Footer.tsx
│ │ ├─ HomePage.tsx
│ │ ├─ HowItWorks.tsx
│ │ └─ Navbar.tsx
│ ├─ portfolio/
│ │ ├─ EditForm/
│ │ │ └─ page.tsx
│ │ └─ PortfolioPreview/
│ │ └─ page.tsx
│ └─ ui/
│ ├─ animated-shiny-text.tsx
│ ├─ light-rays.tsx
│ ├─ ToastContext.tsx
│ └─ word-rotate.tsx
├─ lib/
│ ├─ db.ts
│ └─ utils.ts
├─ models/
│ ├─ portfolio.model.ts
│ └─ user.model.ts
├─ public/
└─ store/
└─ useUserStore.ts