Skip to content

Commit

Permalink
Fix typo in domain
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallku committed Feb 7, 2024
1 parent 6865016 commit 5008fdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/blog/app/[category]/[...slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ export async function generateMetadata({ params: { category, slug } }: PostProps
}

const metaData: Metadata = {
metadataBase: new URL("https://marshallk.com"),
metadataBase: new URL("https://marshallku.com"),
title: post.data.title,
description: post.data.description,
openGraph: {
type: "article",
title: post.data.title,
description: post.data.description,
url: `https://marshallk.com/${post.slug}`,
url: `https://marshallku.com/${post.slug}`,
publishedTime: post.data.date.posted.toISOString(),
modifiedTime: post.data.date.modified?.toISOString(),
tags: post.data.tags,
Expand Down

0 comments on commit 5008fdd

Please sign in to comment.