Update theme fonts

This commit is contained in:
2026-05-29 22:31:43 +00:00
parent 9460840d2f
commit af161eb859

View File

@@ -25,8 +25,13 @@ export const metadata: Metadata = {
const archivo = Archivo({
variable: "--font-archivo",
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -38,7 +43,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
{children}
<script