Update theme fonts

This commit is contained in:
2026-06-10 20:56:45 +00:00
parent 96db83fcba
commit aba4f8ceda

View File

@@ -10,6 +10,7 @@ import { Open_Sans } from "next/font/google";
import { DM_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google";
import { Manrope } from "next/font/google"; import { Manrope } from "next/font/google";
import { Libre_Baskerville } from "next/font/google"; import { Libre_Baskerville } from "next/font/google";
import { Montserrat } from "next/font/google";
@@ -39,13 +40,9 @@ export const metadata: Metadata = {
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", const montserrat = Montserrat({
subsets: ["latin"], variable: "--font-montserrat",
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -57,7 +54,7 @@ export default function RootLayout({
return ( return (
<html lang="de" suppressHydrationWarning> <html lang="de" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}> <body className={`${montserrat.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script