Update theme fonts

This commit is contained in:
2026-04-23 09:12:24 +00:00
parent a40e023c0b
commit 9c97fb0fd2

View File

@@ -21,10 +21,10 @@ export const metadata: Metadata = {
};
const roboto = Roboto({
variable: "--font-roboto",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -35,7 +35,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}
<script