Fix: add favicon to page metadata

This commit is contained in:
Arkaprabha Chakraborty
2024-08-12 15:35:04 +05:30
parent 4f70ec40c9
commit 1a34236f2f
2 changed files with 3 additions and 0 deletions

View File

@@ -9,6 +9,9 @@ const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Reduce",
description: "A simple URL shortener application",
icons: {
icon: "/favicon.ico",
},
};
export default function RootLayout({ children }) {