gitextract_38gvouyj/ ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public/ │ ├── fonts/ │ │ ├── Geomanist-Regular-Italic.otf │ │ └── Geomanist-Regular.otf │ ├── robots.txt │ ├── rss.xml │ └── sitemap.xml ├── src/ │ ├── app/ │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components/ │ │ ├── Blog.tsx │ │ ├── Contact.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Hero.tsx │ │ ├── Icons/ │ │ │ ├── CrossIcon.tsx │ │ │ ├── FarcasterIcon.tsx │ │ │ ├── GithubIcon.tsx │ │ │ ├── LinkedInIcon.tsx │ │ │ ├── Logo.tsx │ │ │ ├── MailIcon.tsx │ │ │ ├── MenuIcon.tsx │ │ │ ├── VisitIcon.tsx │ │ │ ├── XIcon.tsx │ │ │ └── index.ts │ │ ├── Main.tsx │ │ ├── Projects.tsx │ │ ├── Work.tsx │ │ ├── index.ts │ │ ├── theme-provider.tsx │ │ └── theme-toggle.tsx │ ├── data/ │ │ ├── index.ts │ │ ├── nav.ts │ │ ├── personal.ts │ │ ├── projects.ts │ │ ├── social.tsx │ │ └── work.ts │ ├── types/ │ │ └── PostType.ts │ └── utils/ │ └── getPosts.ts ├── tailwind.config.ts └── tsconfig.json