├── .gitignore ├── .prettierrc ├── README.md ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── favicon.svg ├── images │ └── workspace │ │ ├── workspace-og.jpg │ │ ├── ws-0.webp │ │ ├── ws-1.webp │ │ ├── ws-2.webp │ │ ├── ws-3.webp │ │ ├── ws-4.webp │ │ ├── ws-5.webp │ │ ├── ws-6.webp │ │ ├── ws-7.webp │ │ ├── ws-8.webp │ │ └── ws-9.webp ├── og.jpg └── sitemap.xml ├── src ├── app │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ ├── page.tsx │ └── workspace │ │ ├── exploreData.json │ │ ├── metadata.json │ │ └── page.tsx ├── components │ ├── Br.tsx │ ├── EmailButton.tsx │ ├── Footer.tsx │ ├── Icons.tsx │ ├── Inset.tsx │ ├── Main.tsx │ ├── Nav.tsx │ ├── Section.tsx │ ├── Slot.tsx │ ├── TextLink.tsx │ ├── image │ │ ├── ImageExplorer.tsx │ │ └── PostImage.tsx │ └── redacted │ │ ├── Chat.tsx │ │ ├── Redacted.tsx │ │ └── index.tsx ├── hooks │ └── useClickOutside.tsx └── utils │ └── tw.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 2025 edition 2 | 3 | ```text 4 | /\_/\ 5 | ( o.o ) < ( new and improved ✌️ ) 6 | > ^ < 7 | ``` 8 | -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/images/workspace/workspace-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/workspace-og.jpg -------------------------------------------------------------------------------- /public/images/workspace/ws-0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-0.webp -------------------------------------------------------------------------------- /public/images/workspace/ws-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-1.webp -------------------------------------------------------------------------------- /public/images/workspace/ws-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-2.webp -------------------------------------------------------------------------------- /public/images/workspace/ws-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-3.webp -------------------------------------------------------------------------------- /public/images/workspace/ws-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-4.webp -------------------------------------------------------------------------------- /public/images/workspace/ws-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-5.webp -------------------------------------------------------------------------------- /public/images/workspace/ws-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-6.webp -------------------------------------------------------------------------------- /public/images/workspace/ws-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-7.webp -------------------------------------------------------------------------------- /public/images/workspace/ws-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-8.webp -------------------------------------------------------------------------------- /public/images/workspace/ws-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/images/workspace/ws-9.webp -------------------------------------------------------------------------------- /public/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/og.jpg -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/workspace/exploreData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/app/workspace/exploreData.json -------------------------------------------------------------------------------- /src/app/workspace/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/app/workspace/metadata.json -------------------------------------------------------------------------------- /src/app/workspace/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/app/workspace/page.tsx -------------------------------------------------------------------------------- /src/components/Br.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/Br.tsx -------------------------------------------------------------------------------- /src/components/EmailButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/EmailButton.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/Icons.tsx -------------------------------------------------------------------------------- /src/components/Inset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/Inset.tsx -------------------------------------------------------------------------------- /src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/Main.tsx -------------------------------------------------------------------------------- /src/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/Nav.tsx -------------------------------------------------------------------------------- /src/components/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/Section.tsx -------------------------------------------------------------------------------- /src/components/Slot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/Slot.tsx -------------------------------------------------------------------------------- /src/components/TextLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/TextLink.tsx -------------------------------------------------------------------------------- /src/components/image/ImageExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/image/ImageExplorer.tsx -------------------------------------------------------------------------------- /src/components/image/PostImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/image/PostImage.tsx -------------------------------------------------------------------------------- /src/components/redacted/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/redacted/Chat.tsx -------------------------------------------------------------------------------- /src/components/redacted/Redacted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/redacted/Redacted.tsx -------------------------------------------------------------------------------- /src/components/redacted/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/components/redacted/index.tsx -------------------------------------------------------------------------------- /src/hooks/useClickOutside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/hooks/useClickOutside.tsx -------------------------------------------------------------------------------- /src/utils/tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/src/utils/tw.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganliffick/personal-site/HEAD/tsconfig.json --------------------------------------------------------------------------------