Change favicon and metadata in layout

This commit is contained in:
Jack Mechem 2026-03-30 13:13:09 -07:00
parent 9ad90aaa8d
commit 69d98c69b5
2 changed files with 2 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Before After
Before After

View file

@ -15,8 +15,8 @@ const playfair = Playfair_Display({
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Server Dashboard",
description: "My server dashboard",
};
export default function RootLayout({
@ -27,7 +27,6 @@ export default function RootLayout({
return (
<html
lang="en"
// Add the new font variables here
className={`${dmSans.variable} ${playfair.variable} h-full antialiased`}
>
<body className="min-h-full h-full flex flex-col">{children}</body>