gitextract_iezpmlwg/ ├── .gitignore ├── LICENSE.txt ├── README.md ├── app/ │ ├── (with-layout)/ │ │ ├── about/ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.client.tsx │ │ └── page.tsx │ ├── (without-root-layout)/ │ │ ├── layout.tsx │ │ ├── p/ │ │ │ ├── 2024/ │ │ │ │ ├── page.mdx │ │ │ │ └── smol-txt.tsx │ │ │ ├── 2025/ │ │ │ │ └── page.mdx │ │ │ ├── components/ │ │ │ │ ├── callout.tsx │ │ │ │ ├── figure.tsx │ │ │ │ ├── img-container.tsx │ │ │ │ └── small-text.tsx │ │ │ ├── layout.tsx │ │ │ ├── q1-2025/ │ │ │ │ ├── page.mdx │ │ │ │ └── two-imgs.tsx │ │ │ ├── q2-2025/ │ │ │ │ └── page.mdx │ │ │ ├── q3-2025/ │ │ │ │ └── page.mdx │ │ │ └── substack-embed.module.css │ │ └── visitors/ │ │ ├── actions.ts │ │ ├── all/ │ │ │ ├── page.tsx │ │ │ └── visitors-all.module.css │ │ ├── gang/ │ │ │ └── page.tsx │ │ ├── login/ │ │ │ └── page.tsx │ │ ├── notes.module.css │ │ └── page.tsx │ ├── actions.ts │ ├── api/ │ │ ├── login/ │ │ │ └── route.ts │ │ ├── md/ │ │ │ └── route.ts │ │ ├── send/ │ │ │ └── route.ts │ │ └── spotify/ │ │ └── route.ts │ ├── feed.xml/ │ │ └── route.ts │ ├── globals.css │ ├── layout.tsx │ ├── llms.txt/ │ │ └── route.ts │ ├── robots.txt │ └── sitemap.ts ├── atoms/ │ └── guestbook.tsx ├── components/ │ ├── collapsible.tsx │ ├── copy-email-button.tsx │ ├── email-template.tsx │ ├── footer/ │ │ ├── footer-date.tsx │ │ └── index.tsx │ ├── gallery.tsx │ ├── json-ld.tsx │ ├── link-primitive.tsx │ ├── morphing-dialog.tsx │ ├── music-player.tsx │ ├── now-playing-client.tsx │ ├── photo.tsx │ ├── scroll-area.tsx │ ├── section.tsx │ ├── shader.tsx │ ├── theme-switcher.tsx │ ├── tree-client.tsx │ ├── tree.tsx │ ├── twitter-x-loop.tsx │ ├── video-hover-preview.tsx │ ├── video-pause-button.tsx │ └── visitors/ │ ├── approve-btn.tsx │ ├── cta.tsx │ ├── drag.tsx │ ├── field.tsx │ ├── guestbook-entries.tsx │ ├── note.tsx │ ├── polaroid.tsx │ ├── stickers.tsx │ └── visitors.module.css ├── content.ts ├── hooks/ │ ├── useClickOutside.tsx │ └── useMaxZIndex.tsx ├── lib/ │ ├── blog-posts.ts │ ├── literal.ts │ ├── openai.ts │ ├── redis.ts │ ├── spotify.ts │ └── utils.ts ├── mdx-components.tsx ├── microfrontends.json ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── proxy.ts ├── public/ │ └── font/ │ ├── ABCMonumentGrotesk-Medium-Trial.otf │ └── ABCMonumentGrotesk-Regular-Trial.otf └── tsconfig.json