From 01f721f9386702876bba8ad6ffadea7dc81aa533 Mon Sep 17 00:00:00 2001 From: Troy <hello@troylusty.com> Date: Fri, 27 Dec 2024 20:53:30 +0000 Subject: [PATCH] fix projects showcase height (#5) --- package-lock.json | 34 +++++++++---------- src/components/ShowcaseProject.astro | 2 +- .../projects/studying-spider/index.mdx | 6 ++-- src/pages/robots.txt.ts | 1 - 4 files changed, 21 insertions(+), 22 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5837d08..1c4f5be 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2232,9 +2232,9 @@ } }, "node_modules/astro-icon": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/astro-icon/-/astro-icon-1.1.4.tgz", - "integrity": "sha512-sMLkQaevIQLv38WBzb/RDbsmxhg5+X+KcNmpTi9cE6MLurNWU1MPnlO87d9Vwg4HxTenKpDlYp81A3syXFW/gw==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/astro-icon/-/astro-icon-1.1.5.tgz", + "integrity": "sha512-CJYS5nWOw9jz4RpGWmzNQY7D0y2ZZacH7atL2K9DeJXJVaz7/5WrxeyIxO8KASk1jCM96Q4LjRx/F3R+InjJrw==", "license": "MIT", "dependencies": { "@iconify/tools": "^4.0.5", @@ -6191,13 +6191,13 @@ } }, "node_modules/pkg-types": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.2.1.tgz", - "integrity": "sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.0.tgz", + "integrity": "sha512-kS7yWjVFCkIw9hqdJBoMxDdzEngmkr5FXeWZZfQ6GoYacjVnsW6l2CcYW/0ThD0vF4LPJgVYnrg4d0uuhwYQbg==", "license": "MIT", "dependencies": { "confbox": "^0.1.8", - "mlly": "^1.7.2", + "mlly": "^1.7.3", "pathe": "^1.1.2" } }, @@ -6652,21 +6652,21 @@ } }, "node_modules/regex": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/regex/-/regex-5.1.0.tgz", - "integrity": "sha512-KNCzMdCkhhFKcWnqKIixAKDRzERQ/RTvENLRuLSqNFYdvn/XEgKSrpBHluYqnQxuDnzOB+iZRNGidQeEVe9upw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/regex/-/regex-5.1.1.tgz", + "integrity": "sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==", "license": "MIT", "dependencies": { "regex-utilities": "^2.3.0" } }, "node_modules/regex-recursion": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-5.1.0.tgz", - "integrity": "sha512-8PNVYEQEw5fyIGDuLqXMP5WSSjNey+9q+pUFdVqBbPxo9PL8nl7ucZRa3jzooTz7D6wMOHDrCMdwc6fqL60EXw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-5.1.1.tgz", + "integrity": "sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==", "license": "MIT", "dependencies": { - "regex": "^5.1.0", + "regex": "^5.1.1", "regex-utilities": "^2.3.0" } }, @@ -7944,9 +7944,9 @@ } }, "node_modules/unstorage": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.14.3.tgz", - "integrity": "sha512-nj1rtc2XWCck2fDB39sboAajqooj9LmxZ9/eBM1XR+iUQAFctKvLl0FcPP5f4vzRgU1dmJ03SZhqZMLc9RDXIA==", + "version": "1.14.4", + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.14.4.tgz", + "integrity": "sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==", "license": "MIT", "dependencies": { "anymatch": "^3.1.3", diff --git a/src/components/ShowcaseProject.astro b/src/components/ShowcaseProject.astro index 154dfe6..f2e1e62 100644 --- a/src/components/ShowcaseProject.astro +++ b/src/components/ShowcaseProject.astro @@ -11,7 +11,7 @@ const { collection } = Astro.props; <li> <article - class="group relative isolate mx-auto flex w-full flex-col justify-end overflow-hidden rounded-lg px-8 pb-8 pt-40" + class="group relative isolate mx-auto flex h-full w-full flex-col justify-end overflow-hidden rounded-lg px-8 pb-8 pt-40" > <Image src={collection.data.image.url} diff --git a/src/content/projects/studying-spider/index.mdx b/src/content/projects/studying-spider/index.mdx index 8124b6b..613d013 100644 --- a/src/content/projects/studying-spider/index.mdx +++ b/src/content/projects/studying-spider/index.mdx @@ -1,6 +1,6 @@ --- title: "Studying Spider" -description: "Just a smart looking little spider I made in a couple lessons at college." +description: "A smart little spider made within a couple lessons at college." date: 2022-01-27 updated: 2022-01-27 image: { url: "troy-lusty-studying-spider.avif", alt: "Studying Spider" } @@ -8,7 +8,7 @@ tags: ["blender"] categories: ["personal"] --- -Just a smart looking little spider I made in a couple lessons at college. Feedback thanks to [Sam](https://www.artstation.com/samgriffithsofficial). +Thanks to [Sam](https://www.artstation.com/samgriffiths) for feedback.  @@ -20,7 +20,7 @@ _Ambient occlusion pass_  -_Early stage_ +_Earlier stage_ ### Assets list diff --git a/src/pages/robots.txt.ts b/src/pages/robots.txt.ts index 5dd5eaf..6f3f6b5 100644 --- a/src/pages/robots.txt.ts +++ b/src/pages/robots.txt.ts @@ -3,7 +3,6 @@ import type { APIRoute } from "astro"; const getRobotsTxt = (sitemapURL: URL) => ` User-agent: * Disallow: /cv -Disallow: /privacy Allow: / Sitemap: ${sitemapURL.href}