-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject_file_tree.txt
85 lines (84 loc) · 2.9 KB
/
project_file_tree.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
src/app
├── favicon.ico
├── fonts
│ ├── GeistMonoVF.woff
│ └── GeistVF.woff
├── globals.css
├── layout.js
├── (main)
│ ├── account
│ │ ├── appearance
│ │ │ ├── appearance-form.tsx
│ │ │ └── page.tsx
│ │ ├── components
│ │ │ └── sidebar-nav.tsx
│ │ ├── display
│ │ │ ├── display-form.tsx
│ │ │ └── page.tsx
│ │ ├── layout.tsx
│ │ ├── notifications
│ │ │ ├── notifications-form.tsx
│ │ │ └── page.tsx
│ │ ├── orders
│ │ │ └── page.tsx
│ │ ├── page.tsx
│ │ └── profile
│ │ ├── page.tsx
│ │ └── profile-form.tsx
│ ├── actions
│ │ └── authActions.ts
│ ├── api
│ │ ├── add-product
│ │ │ └── api.js
│ │ ├── addproduct
│ │ │ └── route.js
│ │ ├── address
│ │ │ └── route.ts
│ │ ├── auth
│ │ │ └── [...all]
│ │ │ └── route.ts
│ │ ├── cart
│ │ │ ├── merge
│ │ │ │ └── route.ts
│ │ │ └── route.js
│ │ ├── delete-image
│ │ │ └── route.js
│ │ ├── getCategory
│ │ │ └── route.js
│ │ ├── products
│ │ │ └── route.js
│ │ ├── sign-up
│ │ │ ├── route.js
│ │ │ └── seller
│ │ │ └── route.js
│ │ └── upload
│ │ └── route.js
│ ├── auth
│ │ ├── signin
│ │ │ └── page.jsx
│ │ └── signup
│ │ └── page.tsx
│ ├── cart
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── checkout
│ │ ├── layout.tsx
│ │ └── page.tsx
│ └── products
│ ├── category
│ │ └── [category]
│ │ └── page.js
│ └── [productId]
│ ├── loading.tsx
│ └── page.jsx
├── page.js
├── (product_upload)
│ └── addproduct
│ ├── details
│ │ └── page.jsx
│ ├── layout.jsx
│ └── upload
│ └── page.jsx
└── unauthorized
└── page.tsx
39 directories, 44 files