diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b8836af..33d2fed 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,13 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "FahrSchule Pro", description: "Moderne Fahrausbildung mit erfahrenen Instruktoren"}; + title: "FahrSchule Pro", description: "Moderne Fahrausbildung mit erfahrenen Instruktoren" +}; export default function RootLayout({ children, @@ -9,7 +15,7 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - + {children} diff --git a/src/app/styles/base.css b/src/app/styles/base.css index be35e85..34aea07 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-manrope), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-manrope), sans-serif; + font-family: var(--font-inter), sans-serif; }