diff --git a/app/(default)/blog/how-i-setup-my-k3s-kubernetes-cluster/page.tsx b/app/(default)/blog/how-i-setup-my-k3s-kubernetes-cluster/page.tsx index 43b6694..c79de5e 100644 --- a/app/(default)/blog/how-i-setup-my-k3s-kubernetes-cluster/page.tsx +++ b/app/(default)/blog/how-i-setup-my-k3s-kubernetes-cluster/page.tsx @@ -5,6 +5,7 @@ import dynamic from 'next/dynamic'; const EmbedGist = dynamic(() => import('@/components/embed-gist'), { ssr: false }); export const metadata = { + metadataBase: new URL('https://hilars.dev'), title: "How I setup my Kubernetes Cluster", description: "See how I setup my Kubernetes Cluster and how I use it to host my sideprojects.", author: "Lars", diff --git a/app/(default)/blog/how-to-create-custom-short-links-with-referrer-tracking-using-nextjs/page.tsx b/app/(default)/blog/how-to-create-custom-short-links-with-referrer-tracking-using-nextjs/page.tsx index 10cefcd..c5a5779 100644 --- a/app/(default)/blog/how-to-create-custom-short-links-with-referrer-tracking-using-nextjs/page.tsx +++ b/app/(default)/blog/how-to-create-custom-short-links-with-referrer-tracking-using-nextjs/page.tsx @@ -5,6 +5,7 @@ import dynamic from 'next/dynamic'; const EmbedGist = dynamic(() => import('@/components/embed-gist'), { ssr: false }); export const metadata = { + metadataBase: new URL('https://hilars.dev'), title: "How to Create Custom Short Links with Referrer Tracking Using Next.js", description: "Learn how to create custom short links with referrer tracking using Next.js to maintain accurate marketing and traffic data.", author: "Lars", diff --git a/app/(default)/blog/the-end-of-manifest-v2-what-you-need-to-know-about-the-chrome-extension-transition/page.tsx b/app/(default)/blog/the-end-of-manifest-v2-what-you-need-to-know-about-the-chrome-extension-transition/page.tsx index 5eabe6b..212e346 100644 --- a/app/(default)/blog/the-end-of-manifest-v2-what-you-need-to-know-about-the-chrome-extension-transition/page.tsx +++ b/app/(default)/blog/the-end-of-manifest-v2-what-you-need-to-know-about-the-chrome-extension-transition/page.tsx @@ -3,6 +3,7 @@ import Image from "next/image"; import BlogHeader from "@/components/BlogHeader"; export const metadata = { + metadataBase: new URL('https://hilars.dev'), title: "The End of Manifest V2: What You Need to Know About the Chrome Extension Transition", description: "Learn about the transition from Manifest V2 to Manifest V3 for Chrome extensions, the reasons behind it, and what it means for developers.", author: "Lars", diff --git a/app/(default)/layout.tsx b/app/(default)/layout.tsx index 6c26355..2ea758f 100644 --- a/app/(default)/layout.tsx +++ b/app/(default)/layout.tsx @@ -11,6 +11,7 @@ import UmamiScript from "../_components/umami"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { + metadataBase: new URL('https://hilars.dev'), title: "There is no place like 127.0.0.1", description: "A passionate Software and Systems Engineer specializing in Python, JavaScript, Linux and DevOps.", };