Skip to content

Commit

Permalink
Pass empty object for home page metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
ClydeDz committed Jul 29, 2024
1 parent 5144ae0 commit 4dc53f9
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions website/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ import { PageViewAnalytics } from "@/blocks/Analytics/PageViewAnalytics";
import { PageTypes } from "@/blocks/Navigation/PageTypes";
import { generateMetadata } from "@/utility/seo";

export const metadata = generateMetadata({
title: undefined,
image: undefined,
description: undefined,
});
export const metadata = generateMetadata({});

export default function Home() {
return (
Expand Down

0 comments on commit 4dc53f9

Please sign in to comment.