feat(SEO): Fix and improve links for better search engine visibility

This commit is contained in:
EFEELE
2025-04-15 13:22:21 -06:00
parent 48c0de5fec
commit 09dc543837
4 changed files with 11 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ 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 currentUrl = `${Astro.site}${Astro.url.pathname}`;
const tweetText = encodeURIComponent(`"${pageTitle}"`);
import Heading from "../../../components/ui/Heading.astro";
import Share from "../../../components/ui/Share.astro";