Merge version_3 into main #3

Merged
bender merged 2 commits from version_3 into main 2026-03-06 13:48:22 +00:00
2 changed files with 10 additions and 4 deletions

View File

@@ -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 (
<html lang="de">
<html lang="de" className={inter.variable}>
<body>
{children}

View File

@@ -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;
}