Last active
December 25, 2023 13:23
-
-
Save rahulmore01/05a6c655ff5bc358a0610101c84229f0 to your computer and use it in GitHub Desktop.
favicon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const metadata = { | |
title: "Rahul More", | |
description: "A Frontend Developer Portfolio", | |
}; | |
export default function RootLayout({ children }) { | |
return ( | |
<html lang="en"> | |
<body> | |
{/* line 11 is the only addition to make in layout.js */} | |
<link rel="icon" href="/images/rahul.png" sizes="any" /> | |
<Toaster position="top-center " /> | |
{children} | |
</body> | |
</html> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment