├── 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/
│ ├── Githuberror404.png
│ ├── 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/
│ │ │ │ └── route.ts
│ │ │ ├── generate_tagline/
│ │ │ │ └── generateTagline.ts
│ │ │ ├── github_profile/
│ │ │ │ ├── route.ts
│ │ │ │ └── user.ts
│ │ │ └── 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/
│ │ ├── Canvas.jsx
│ │ ├── Header.jsx
│ │ ├── MyCard.jsx
│ │ ├── README.md
│ │ ├── UserCard.jsx
│ │ └── UserConfig.ts
│ ├── hooks/
│ │ └── README.md
│ ├── libs/
│ │ ├── README.md
│ │ └── utils.ts
│ └── pages/
│ ├── Contributors.jsx
│ ├── Home.jsx
│ ├── NotFound.jsx
│ └── README.md
├── tailwind.config.js
└── tsconfig.json