--- 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"; ---