Update theme fonts

This commit is contained in:
2026-04-21 16:32:41 +00:00
parent 38c8ccc248
commit 2e637293ea

View File

@@ -26,12 +26,14 @@ export const metadata: Metadata = {
const manrope = Manrope({
variable: "--font-manrope",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -43,7 +45,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script