-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathrepo_structure.txt
83 lines (83 loc) · 2.6 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
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── CONTRIBUTORS.md
├── LICENSE
├── PROJECT_STRUCTURE.md
├── README.md
├── SECURITY.md
├── jsconfig.json
├── next.config.mjs
├── package-lock.json
├── package.json
├── postcss.config.mjs
├── public/
│ ├── Arial.ttf
│ ├── Calibri.ttf
│ ├── CascadiaCode-Bold.otf
│ ├── Githuberror404.png
│ ├── Helvetica.otf
│ ├── TimesNewRoman.ttf
│ ├── Verdana.ttf
│ ├── default_profile.svg
│ ├── download.svg
│ ├── github-filled.svg
│ ├── humans.txt
│ ├── img.svg
│ ├── markdown.svg
│ ├── shape1.svg
│ ├── shape2.svg
│ └── url.svg
├── repo_structure.txt
├── src/
│ ├── README.md
│ ├── app/
│ │ ├── [...not-found]/
│ │ │ └── page.jsx
│ │ ├── [username]/
│ │ │ └── page.jsx
│ │ ├── api/
│ │ │ ├── ai/
│ │ │ │ ├── interface.ts
│ │ │ │ └── route.ts
│ │ │ ├── config/
│ │ │ │ ├── interface.ts
│ │ │ │ └── route.ts
│ │ │ ├── generate_tagline/
│ │ │ │ ├── interface.ts
│ │ │ │ └── route.ts
│ │ │ ├── github_profile/
│ │ │ │ ├── interface.ts
│ │ │ │ └── route.ts
│ │ │ ├── image/
│ │ │ │ └── route.jsx
│ │ │ └── user/
│ │ │ ├── interface.ts
│ │ │ └── route.ts
│ │ ├── contributors/
│ │ │ └── page.jsx
│ │ ├── favicon.ico
│ │ ├── fonts/
│ │ │ ├── GeistMonoVF.woff
│ │ │ └── GeistVF.woff
│ │ ├── globals.css
│ │ ├── layout.js
│ │ ├── page.jsx
│ │ ├── robots.ts
│ │ └── sitemap.ts
│ ├── components/
│ │ ├── Header.jsx
│ │ ├── MyCard.jsx
│ │ ├── README.md
│ │ └── RenderSVG.jsx
│ ├── hooks/
│ │ └── README.md
│ ├── libs/
│ │ ├── README.md
│ │ └── utils.ts
│ └── pages/
│ ├── Contributors.jsx
│ ├── Home.jsx
│ ├── NotFound.jsx
│ └── README.md
├── tailwind.config.js
└── tsconfig.json