Files
site-profile/src/components/sections/FeatureSection.astro
Alex Lebens b3c377f62d
All checks were successful
renovate / renovate (push) Successful in 1m32s
test-build / build (push) Successful in 3m22s
test-build / guarddog (push) Successful in 4m3s
feat: adjustment pass on spacing between sections
2026-02-19 18:14:44 -06:00

42 lines
1.5 KiB
Plaintext

---
import { readSingleton } from '@directus/sdk';
import FeaturesCard from '@components/cards/FeaturesCard.astro';
import directus from '@lib/directus';
const global = await directus.request(readSingleton('site_global'));
---
<section class="max-w-340 2xl:max-w-full px-4 sm:px-6 lg:px-8 py-10 lg:py-14 mx-auto mb-2 md:mb-8">
<div class="flex flex-col sm:flex-row items-center justify-center gap-y-2 sm:gap-x-12 sm:gap-y-0 lg:gap-x-24">
<div class="max-w-5xl sm:px-6 lg:px-8">
<div class="flex flex-wrap gap-6 sm:grid-cols-2 sm:gap-6 lg:grid-cols-3 justify-center">
<FeaturesCard
title="Cloud Engineer"
description="Full stack and cloud engineer."
url="/about"
logoUrlLight="https://img.icons8.com/cotton/64/cloud-development--v2.png"
/>
<FeaturesCard
title="Homelab"
description="Tinkering, testing, deploying, etc, etc ..."
url="/categories/homelab/"
logoUrlLight="https://img.icons8.com/cotton/64/smart-home-connection.png"
/>
<FeaturesCard
title="Documentation"
description="Reference and guides for my homelab."
url="https://docs.alexlebens.dev"
logoUrlLight="https://img.icons8.com/cotton/64/bookmarked-document--v1.png"
/>
<FeaturesCard
title="Email"
description={`Send me a message.`}
url=`mailto:${global.email}`
logoUrlLight="https://img.icons8.com/cotton/64/secured-letter--v3.png"
/>
</div>
</div>
</div>
</section>