diff --git a/app/favicon.ico b/app/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/app/favicon.ico and /dev/null differ diff --git a/app/layout.tsx b/app/layout.tsx index d9cd4ae..9ec87db 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,26 +1,30 @@ -import { GeistSans } from "geist/font/sans"; +import '@fontsource/nunito/400.css'; +import '@fontsource/nunito/700.css'; import "./globals.css"; const defaultUrl = process.env.VERCEL_URL - ? `https://${process.env.VERCEL_URL}` - : "http://localhost:3000"; + ? `https://${process.env.VERCEL_URL}` + : "http://localhost:3000"; export const metadata = { - metadataBase: new URL(defaultUrl), - title: "Electrium Shop", - description: "Electrium Mobility's Shop", + metadataBase: new URL(defaultUrl), + title: "Electrium Shop", + description: "Electrium Mobility's Shop", + icons: { + icon: '/img/favicon.png', + }, }; export default function RootLayout({ - children, -}: { - children: React.ReactNode; + children, + }: { + children: React.ReactNode; }) { - return ( - - - {children} - - - ); -} + return ( + + + {children} + + + ); +} \ No newline at end of file diff --git a/components/shop/Navbar.tsx b/components/shop/Navbar.tsx index 562a76f..958703e 100644 --- a/components/shop/Navbar.tsx +++ b/components/shop/Navbar.tsx @@ -5,7 +5,7 @@ export default function Navbar() { return (