Skip to content

Instantly share code, notes, and snippets.

@rahulmore01
Last active December 25, 2023 13:23
Show Gist options
  • Save rahulmore01/05a6c655ff5bc358a0610101c84229f0 to your computer and use it in GitHub Desktop.
Save rahulmore01/05a6c655ff5bc358a0610101c84229f0 to your computer and use it in GitHub Desktop.
favicon
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