From dcd730b0b1e5c2c1d282fa02712e57693e96bd19 Mon Sep 17 00:00:00 2001 From: Troy Date: Sun, 16 Feb 2025 18:17:29 +0000 Subject: [PATCH] feat: include brief description on index inspiration taken from sanju.sh --- bun.lock | 3 - package.json | 1 - src/components/Header.astro | 2 + src/components/Hero.astro | 56 +++++++++++------- src/consts.ts | 4 +- .../projects/3d-package-design/index.mdx | 2 +- src/content/projects/astronaut/index.mdx | 2 +- .../projects/must-find-beans/capsule.avif | Bin 0 -> 4814 bytes .../projects/must-find-beans/index.mdx | 41 +++++++++++++ ...907ac4aa8d8e9e4ca19ecab3c51ede971b2bd.avif | Bin 0 -> 19084 bytes ...0a3c02235371547350c557fefb830e6e2d067.avif | Bin 0 -> 23219 bytes ...c5ca65e2f24088afac3faf79f450057e13383.avif | Bin 0 -> 15840 bytes ...8870d1c22722983b76c3effe7fba7f5d1cb5e.avif | Bin 0 -> 3833 bytes ...38aaba4f11d33c6919a7d17657b6ffc2b422a.avif | Bin 0 -> 17201 bytes .../projects/unreleased-projects/index.mdx | 2 +- src/pages/cv.astro | 2 +- src/pages/index.astro | 5 +- src/styles/global.css | 7 ++- 18 files changed, 90 insertions(+), 37 deletions(-) create mode 100644 src/content/projects/must-find-beans/capsule.avif create mode 100644 src/content/projects/must-find-beans/index.mdx create mode 100644 src/content/projects/must-find-beans/ss_3f3907ac4aa8d8e9e4ca19ecab3c51ede971b2bd.avif create mode 100644 src/content/projects/must-find-beans/ss_8340a3c02235371547350c557fefb830e6e2d067.avif create mode 100644 src/content/projects/must-find-beans/ss_b2dc5ca65e2f24088afac3faf79f450057e13383.avif create mode 100644 src/content/projects/must-find-beans/ss_c578870d1c22722983b76c3effe7fba7f5d1cb5e.avif create mode 100644 src/content/projects/must-find-beans/ss_ed538aaba4f11d33c6919a7d17657b6ffc2b422a.avif diff --git a/bun.lock b/bun.lock index ccc89bb..8762aa8 100644 --- a/bun.lock +++ b/bun.lock @@ -10,7 +10,6 @@ "@astrojs/sitemap": "3.2.1", "@fontsource-variable/outfit": "^5.1.1", "@fontsource-variable/red-hat-mono": "^5.1.1", - "@fontsource/instrument-serif": "^5.1.1", "@tailwindcss/vite": "^4.0.6", "astro": "^5.3.0", "astro-icon": "^1.1.5", @@ -133,8 +132,6 @@ "@fontsource-variable/red-hat-mono": ["@fontsource-variable/red-hat-mono@5.1.1", "", {}, "sha512-yeZTpCFFU+fJwlhDrMdQROva42Kuaj1KjCp2HSHziT0FE+BPEL90oS0yAAdDZqwjgI77wDp2I6kgnZoHFV95AQ=="], - "@fontsource/instrument-serif": ["@fontsource/instrument-serif@5.1.1", "", {}, "sha512-DZ+ho/lr8PIqilsGjh5jc0o9oT1BR8UHaBMzCdC4r4MmMqopMzS8uEFGuKwNCd7cDSoAiVXEigaRgnzdi1uv1g=="], - "@iconify-json/mdi": ["@iconify-json/mdi@1.2.3", "", { "dependencies": { "@iconify/types": "*" } }, "sha512-O3cLwbDOK7NNDf2ihaQOH5F9JglnulNDFV7WprU2dSoZu3h3cWH//h74uQAB87brHmvFVxIOkuBX2sZSzYhScg=="], "@iconify/tools": ["@iconify/tools@4.1.1", "", { "dependencies": { "@iconify/types": "^2.0.0", "@iconify/utils": "^2.2.0", "@types/tar": "^6.1.13", "axios": "^1.7.9", "cheerio": "1.0.0", "domhandler": "^5.0.3", "extract-zip": "^2.0.1", "local-pkg": "^0.5.1", "pathe": "^1.1.2", "svgo": "^3.3.2", "tar": "^6.2.1" } }, "sha512-Hybu/HGhv6T8nLQhiG9rKx+ekF7NNpPOEQAy7JRSKht3s3dcFSsPccYzk24Znc9MTxrR6Gak3cg6CPP5dyvS2Q=="], diff --git a/package.json b/package.json index ee119b0..35a0475 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,6 @@ "@astrojs/sitemap": "3.2.1", "@fontsource-variable/outfit": "^5.1.1", "@fontsource-variable/red-hat-mono": "^5.1.1", - "@fontsource/instrument-serif": "^5.1.1", "@tailwindcss/vite": "^4.0.6", "astro": "^5.3.0", "astro-icon": "^1.1.5", diff --git a/src/components/Header.astro b/src/components/Header.astro index dc0d91c..5f69496 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -1,5 +1,6 @@ --- import { SITE } from "@consts"; +import Button from "@components/Button.astro"; const pathname = new URL(Astro.request.url).pathname; const currentPath = pathname.replace(/\/$/, ""); @@ -32,6 +33,7 @@ const currentPath = pathname.replace(/\/$/, ""); ); }) } +