Skip to content

Commit

Permalink
add metadata base
Browse files Browse the repository at this point in the history
  • Loading branch information
nahtnam committed Sep 14, 2024
1 parent ce931e3 commit 45d85fd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type { Metadata } from "next";
import { Inter, Inter_Tight } from "next/font/google";
import { twMerge } from "tailwind-merge";
import { Footer } from "./_components/footer";
Expand All @@ -16,6 +17,10 @@ const interTight = Inter_Tight({
variable: "--font-inter-tight",
});

export const metadata: Metadata = {
metadataBase: new URL("https://www.TODO.com"),
};

export default function RootLayout({
children,
}: Readonly<{
Expand Down

0 comments on commit 45d85fd

Please sign in to comment.