update content

This commit is contained in:
2025-08-11 18:13:22 -05:00
parent 284f30c392
commit 28f73be784
21 changed files with 39 additions and 46 deletions

View File

@@ -27,13 +27,13 @@ const currentYear = new Date().getFullYear();
</div>
<span class="ml-3 text-xl font-bold text-neutral-800 dark:text-neutral-200">
Blog
{global.name}
</span>
</div>
</a>
<p class="mt-4 text-sm leading-relaxed text-neutral-600 dark:text-neutral-400">
A description of something.
{global.about}
</p>
</div>
<!-- Left links -->

View File

@@ -7,8 +7,6 @@ interface Props {
}
const { posts } = Astro.props;
const description = 'Here are a few articles that I think are not bad, hope you like too.';
---
<section class="mx-auto mb-10 max-w-[85rem] px-4 py-8 sm:px-6 lg:px-8 2xl:max-w-full">
@@ -17,13 +15,8 @@ const description = 'Here are a few articles that I think are not bad, hope you
id="selected-articel"
class="smooth-reveal-2 mb-4 text-5xl font-extrabold tracking-tight text-balance text-neutral-800 dark:text-neutral-200"
>
Posts
Older Articles
</h2>
<p
class="smooth-reveal-2 mb-8 max-w-prose font-light text-pretty text-neutral-600 sm:text-xl dark:text-neutral-400"
>
{description}
</p>
</div>
<div class="flex flex-col md:flex-row md:space-x-12 lg:space-x-16">

View File

@@ -15,19 +15,19 @@ const global = await directus.request(readSingleton('site_global'));
<div class="grid gap-3 sm:grid-cols-2 sm:gap-6 lg:grid-cols-3">
<FeaturesCard
title="Cloud Engineer"
description="Full stack and multi cloud engineer"
url="#"
description="Full stack and cloud engineer."
url="/about"
icon="mdi:cloud-outline"
/>
<FeaturesCard
title="Homelab"
description="Tinkering, testing, deploying, etc, etc ..."
url="#"
url="/categories/homelab/"
icon="mdi:home-variant-outline"
/>
<FeaturesCard
title="Email Me"
description={`Reach me at ${global.email}`}
title="Email"
description={`Send me a message.`}
url=`mailto:${global.email}`
icon="mdi:email-fast"
/>