diff --git a/astro.config.mjs b/astro.config.mjs index b54dcc8..358a66a 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -7,7 +7,7 @@ import icon from "astro-icon"; // https://astro.build/config export default defineConfig({ - site: "https://efeele.dev", + site: "https://neonmint.efeele.dev", integrations: [preact(), icon(), sitemap()], vite: { diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 2de4c49..8588485 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -4,8 +4,8 @@ import Header from "../components/layout/Header.astro"; import Footer from "../components/layout/Footer.astro"; import SpeedInsights from "@vercel/speed-insights/astro" const { - pageTitle = "EFEELE | Programmer and Web Developer πŸš€", - description = "Welcome to EFEELE's website, where I develop software and share knowledge.", + pageTitle = "NeonMint by EFEELE πŸš€", + description = "Welcome to NeonMint by EFEELE, where I develop software and share knowledge.", ogimage = { url: "/images/imagedefault.webp", alt: "Default image of EFEELE", @@ -14,7 +14,7 @@ const { const siteUrl = new URL(Astro.url).origin; const SEO = { - sitename: "EFEELE | Programmer and Web Developer πŸš€", + sitename: "NeonMint by EFEELEπŸš€", url: siteUrl, locale: "en_US", author: "Fernando Lopez | EFEELE", @@ -46,7 +46,7 @@ const twitterimage = `${siteUrl}${ogimage.url}`; - + @@ -56,6 +56,7 @@ const twitterimage = `${siteUrl}${ogimage.url}`; + @@ -66,6 +67,9 @@ const twitterimage = `${siteUrl}${ogimage.url}`; + + + diff --git a/src/layouts/MarkdownPostLayout.astro b/src/layouts/MarkdownPostLayout.astro index 7989ee9..bc9a6e3 100644 --- a/src/layouts/MarkdownPostLayout.astro +++ b/src/layouts/MarkdownPostLayout.astro @@ -9,7 +9,7 @@ import ListPosts from "../components/blog/ListPosts.astro"; import NavigationArticles from "../components/layout/NavigationArticles.astro"; import Share from "../components/ui/Share.astro"; const { frontmatter } = Astro.props; -const currentUrl = `https://efeele.dev${Astro.url.pathname}`; +const currentUrl = `${Astro.site}${Astro.url.pathname}`; const tweetText = encodeURIComponent( `"${frontmatter.title}" - by ${frontmatter.author} | EFEELE`, ); diff --git a/src/pages/blog/posts/index.astro b/src/pages/blog/posts/index.astro index 721edcd..42f6318 100644 --- a/src/pages/blog/posts/index.astro +++ b/src/pages/blog/posts/index.astro @@ -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";