Update theme fonts

This commit is contained in:
2026-06-03 12:03:45 +00:00
parent c7da48c745
commit 756249d701

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Archivo } from "next/font/google";
@@ -40,13 +41,9 @@ export const metadata: Metadata = {
},
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
@@ -58,7 +55,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<script