fix posts showcase

fixed to publish current work to latest
This commit is contained in:
Troy 2025-02-12 13:00:53 +00:00
parent f46a5383b1
commit ba32147a6d
Signed by: troy
GPG key ID: DFC06C02ED3B4711
4 changed files with 5 additions and 5 deletions

View file

@ -80,7 +80,7 @@ import Button from "@components/Button.astro";
x-transition:leave-start="translate-y-0" x-transition:leave-start="translate-y-0"
x-transition:leave-end="-translate-y-full" x-transition:leave-end="-translate-y-full"
id="mobileMenu" id="mobileMenu"
class="bg-primary shadow-secondary/10 fixed inset-x-0 top-0 z-98 flex max-h-svh flex-col overflow-y-auto rounded-b-md px-6 pt-20 pb-6 shadow-lg sm:hidden" class="bg-primary fixed inset-x-0 top-0 z-98 flex max-h-svh flex-col overflow-y-auto rounded-b-md px-6 pt-20 pb-6 sm:hidden"
> >
{ {
SITE.NAVLINKS.map((i) => ( SITE.NAVLINKS.map((i) => (

View file

@ -8,14 +8,14 @@ type Props = {
const { collection } = Astro.props; const { collection } = Astro.props;
--- ---
<li class="bg-secondary rounded-md p-8"> <li class="border-tertiary/30 border-l">
<a <a
class="group hover:bg-tertiary/30 bg-none" class="group hover:bg-tertiary/30 bg-none"
href={`/${collection.collection}/${collection.slug}`} href={`/${collection.collection}/${collection.slug}`}
> >
<article class="flex flex-col"> <article class="ml-2 flex flex-col">
<h3 class="mb-1 font-semibold text-balance"> <h3 class="mb-1 font-semibold text-balance">
<span class="text-primary">{collection.data.title}</span><span <span class="text-secondary">{collection.data.title}</span><span
class="text-tertiary group-hover:text-accent ml-2 transition-colors" class="text-tertiary group-hover:text-accent ml-2 transition-colors"
>{collection.data.description}</span >{collection.data.description}</span
> >

View file

@ -41,7 +41,7 @@ export const SITE: Site = {
}, },
{ {
name: "CV", name: "CV",
href: "/cv.pdf", href: "/troy-lusty-cv.pdf",
icon: "mdi:certificate", icon: "mdi:certificate",
}, },
{ {