Skip to content

Commit

Permalink
add metadataBase
Browse files Browse the repository at this point in the history
  • Loading branch information
l4r-s committed Aug 31, 2024
1 parent dc8f100 commit 7846841
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions app/(default)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
};
Expand Down

0 comments on commit 7846841

Please sign in to comment.