From cd851083954c9fcffabfd86bfea849771631dc07 Mon Sep 17 00:00:00 2001 From: Daniel Griesser Date: Wed, 13 Mar 2024 10:33:53 +0100 Subject: [PATCH] feat: Add favicon --- app/layout.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/layout.tsx b/app/layout.tsx index 7a2f6b063b7af1..f1c546756a92f1 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,6 +3,9 @@ import Script from 'next/script'; export const metadata: Metadata = { title: 'Home', + icons: { + icon: '/favicon.ico', + }, }; export default function RootLayout({children}: {children: React.ReactNode}) {