From 7ee31fd10622efe9a66e1d5933739bcd76ceda2e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:48:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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} -- 2.49.1 From fad582dbb8025898b061f36b1c752a15ac900f27 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:48:18 +0000 Subject: [PATCH 2/2] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.49.1