first commit

This commit is contained in:
EFEELE
2025-04-07 15:50:13 -06:00
commit c2421d79c5
124 changed files with 12129 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
---
import Layout from "../../layouts/Layout.astro";
import Hero from "../../components/blog/Hero.astro";
import Tags from "../../components/blog/Tags.astro";
import ListPosts from "../../components/blog/ListPosts.astro";
const pageTitle = "Web Development and Technology Blog | Fernando López | EFEELE";
const description = "Welcome to my blog, where I share my passion for frontend development, web design, and the latest technology trends.";
const ogimage = {
url: "/images/blogimage.webp",
alt: "EFEELE.dev logo with green background and light effect. Text: 'Web Development and Technology Blog' and URL 'www.efeele.dev'.",
};
const currentUrl = `https://efeele.dev${Astro.url.pathname}`;
const tweetText = encodeURIComponent(`"${pageTitle}"`);
import Heading from "../../components/ui/Heading.astro";
import Share from "../../components/ui/Share.astro";
import Languages from "../../components/blog/Languages.astro";
---
<Layout pageTitle={pageTitle} description={description} ogimage={ogimage}>
<div class="relative mx-auto max-w-7xl px-8 max-sm:px-4 gap-6">
<div
class="grid my-8 grid-cols-3 grid-rows-1 max-lg:grid-cols-1 max-lg:grid-rows-[1fr_auto] gap-12 max-md:gap-4"
>
<div class="lg:col-span-2">
<ListPosts all={true} />
</div>
<div class="lg:col-start-3">
<div
class="bg-white dark:bg-transparent w-full mt-0 rounded-2xl dark:border-0 border border-neutral-100 top-14 px-6 pt-8 pb-12"
>
<div class="flex flex-col gap-4 pl-0">
<Heading textGradient="Categories" />
<Tags variant="compact" />
</div>
</div>
<div
class="bg-white dark:bg-transparent w-full mt-8 rounded-2xl dark:border-0 border border-neutral-100 top-14 px-6 pt-8 pb-12"
>
<div class="flex flex-col gap-4 pl-0">
<Heading textGradient="Technologies" level={2} />
<Languages level={2} />
</div>
</div>
<div class="my-8 flex justify-end">
<Share currentUrl={currentUrl} tweetText={tweetText} />
</div>
</div>
</div>
</div>
</Layout>