Update theme fonts

This commit is contained in:
2026-06-11 20:03:15 +00:00
parent 01ddf1060a
commit 2fd110df4e

View File

@@ -8,6 +8,7 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import { Archivo } from "next/font/google";
@@ -43,10 +44,10 @@ export const metadata: Metadata = {
};
const interTight = Inter_Tight({
variable: "--font-inter-tight",
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -57,7 +58,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<script