Skip to content

Commit

Permalink
hopefully icon
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeylitvinenko1 committed Feb 18, 2024
1 parent 6cb198f commit 19e602d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app/layout.tsx
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>
);
}

0 comments on commit 19e602d

Please sign in to comment.