diff --git a/app/layout.tsx b/app/layout.tsx index 284de26..2b2a722 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,9 +1,23 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import localFont from "next/font/local"; import "./globals.css"; import { Providers } from "./providers"; -const inter = Inter({ subsets: ["latin"] }); +const sans = localFont({ + src: [ + { + path: "../assets/fonts/Arimo-Regular.ttf", + weight: "400", + style: "normal", + }, + { + path: "../assets/fonts/Arimo-Bold.ttf", + weight: "700", + style: "normal", + }, + ], + display: "swap", +}); const SITE_NAME = "Songs2VID"; const DEFAULT_TITLE = "Songs2VID"; @@ -26,7 +40,7 @@ export default function RootLayout({ }>) { return ( -
+