FIX all posts redirect page

This commit is contained in:
EFEELE
2025-04-14 11:46:22 -06:00
parent b6272a5de8
commit bc89d1b936

View File

@@ -1,8 +1,8 @@
--- ---
import Layout from "../../layouts/Layout.astro"; import Layout from "../../../layouts/Layout.astro";
import Hero from "../../components/blog/Hero.astro"; import Hero from "../../../components/blog/Hero.astro";
import Tags from "../../components/blog/Tags.astro"; import Tags from "../../../components/blog/Tags.astro";
import ListPosts from "../../components/blog/ListPosts.astro"; import ListPosts from "../../../components/blog/ListPosts.astro";
const pageTitle = "Web Development and Technology Blog | Fernando López | EFEELE"; 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 description = "Welcome to my blog, where I share my passion for frontend development, web design, and the latest technology trends.";
const ogimage = { const ogimage = {
@@ -11,10 +11,10 @@ const ogimage = {
}; };
const currentUrl = `https://efeele.dev${Astro.url.pathname}`; const currentUrl = `https://efeele.dev${Astro.url.pathname}`;
const tweetText = encodeURIComponent(`"${pageTitle}"`); const tweetText = encodeURIComponent(`"${pageTitle}"`);
import Heading from "../../components/ui/Heading.astro"; import Heading from "../../../components/ui/Heading.astro";
import Share from "../../components/ui/Share.astro"; import Share from "../../../components/ui/Share.astro";
import Languages from "../../components/blog/Languages.astro"; import Languages from "../../../components/blog/Languages.astro";
--- ---
<Layout pageTitle={pageTitle} description={description} ogimage={ogimage}> <Layout pageTitle={pageTitle} description={description} ogimage={ogimage}>