-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6cb198f
commit 19e602d
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,27 @@ | ||
import type { Metadata } from "next"; | ||
import "./globals.css"; | ||
import { montserrat } from '@/app/ui/fonts'; | ||
|
||
// export const metadata: Metadata = { | ||
// title: "Create Next App", | ||
// description: "Generated by create next app", | ||
// }; | ||
|
||
export const metadata: Metadata = { | ||
icons: { | ||
icon: './public/icon.ico', // /public path | ||
}, | ||
}; | ||
|
||
|
||
export default function RootLayout({ | ||
children, | ||
}: Readonly<{ | ||
children: React.ReactNode; | ||
}>) { | ||
return ( | ||
<html lang="en"> | ||
<body className={inter.className}>{children}</body> | ||
<body className={montserrat.className}>{children}</body> | ||
</html> | ||
); | ||
} |