Update theme fonts

This commit is contained in:
2026-06-10 08:56:28 +00:00
parent f0b41e97c1
commit 3c17657572

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -43,8 +44,14 @@ export const metadata: Metadata = {
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -56,7 +63,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script