diff --git a/README.md b/README.md index f135e0d..7a3f519 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,126 @@ Check out our [Next.js deployment documentation](https://nextjs.org/docs/deploym ## Project structure +``` +. +├── .changeset +│ ├── README.md +│ └── config.json +├── .dockerignore +├── .github +│ ├── labeler.yaml +│ ├── readmetreerc.yaml +│ └── workflows +│ ├── deployment.yaml +│ ├── format.yaml +│ ├── generate-readme-tree.yaml +│ ├── labeler.yaml +│ ├── release.yaml +│ └── welcome-bot.yaml +├── .gitignore +├── .prettierignore +├── .prettierrc +├── Dockerfile +├── LICENSE +├── README.md +├── manifest +│ ├── certificate.yaml +│ ├── deployment.yaml +│ ├── ingress.yaml +│ ├── namespace.yaml +│ └── service.yaml +├── package.json +└── src + ├── .eslintrc.json + ├── app + │ ├── contact.tsx + │ ├── curriculum-vitae.tsx + │ ├── favicon.ico + │ ├── footer.tsx + │ ├── globals.css + │ ├── header.tsx + │ ├── images.tsx + │ ├── layout.tsx + │ ├── page.tsx + │ ├── projects.tsx + │ └── social-media.tsx + ├── components + │ ├── index.ts + │ └── ui + │ ├── 3d-card.tsx + │ ├── animated-tooltip.tsx + │ ├── background-beams.tsx + │ ├── card-hover-effect.tsx + │ ├── globe.tsx + │ ├── google-gemini-effect.tsx + │ ├── infinite-moving-cards.tsx + │ ├── parallax-scroll.tsx + │ ├── sparkles.tsx + │ ├── tracing-beam.tsx + │ └── typewriter-effect.tsx + ├── data + │ └── globe.json + ├── next-env.d.ts + ├── next.config.mjs + ├── package.json + ├── pnpm-lock.yaml + ├── postcss.config.js + ├── public + │ ├── cv + │ │ ├── education.jpg + │ │ ├── hobbies.jpg + │ │ └── work_experience.webp + │ ├── felix + │ │ ├── 0.jpg + │ │ ├── 1.jpg + │ │ ├── 10.jpg + │ │ ├── 2.jpg + │ │ ├── 3.jpg + │ │ ├── 4.jpg + │ │ ├── 5.jpg + │ │ ├── 6.jpg + │ │ ├── 7.jpg + │ │ ├── 8.jpg + │ │ └── 9.jpg + │ ├── logos + │ │ ├── codepen.png + │ │ ├── coolors.png + │ │ ├── docker.png + │ │ ├── editor_x.png + │ │ ├── figma.png + │ │ ├── fiverr.png + │ │ ├── flaticon.png + │ │ ├── flickr.png + │ │ ├── gamebanana.png + │ │ ├── github.png + │ │ ├── github.webp + │ │ ├── instagram.png + │ │ ├── lichess.png + │ │ ├── linkedin.png + │ │ ├── linktree.png + │ │ ├── monkeytype.png + │ │ ├── paypal.png + │ │ ├── pinterest.png + │ │ ├── quizlet.png + │ │ ├── reddit.png + │ │ ├── spotify.png + │ │ ├── stack-overflow.png + │ │ ├── tumblr.png + │ │ ├── twitch.png + │ │ ├── x.jpg + │ │ └── youtube.png + │ ├── next.svg + │ ├── projects + │ │ ├── mutanuq.png + │ │ └── true-tracker.png + │ └── vercel.svg + ├── tailwind.config.ts + ├── tsconfig.json + └── utils + └── cn.ts + +``` + ## License Licensed under the MIT license, Copyright © trueberryless.