Update src/app/layout.tsx

This commit is contained in:
2026-05-12 18:31:31 +00:00
parent 9b424ec1d6
commit 6bcc47e237

View File

@@ -15,14 +15,13 @@ export const metadata: Metadata = {
description: "Generated by create next app",
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
export default function RootLayout({
@@ -33,7 +32,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${inter.variable} ${libreBaskerville.variable} antialiased`}>
<Tag />
{children}
<script