Update theme fonts

This commit is contained in:
2026-04-22 17:51:21 +00:00
parent ab7ed47b30
commit 2ef303aa6e

View File

@@ -22,10 +22,10 @@ export const metadata: Metadata = {
};
const interTight = Inter_Tight({
variable: "--font-inter-tight",
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -36,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<body className={`${publicSans.variable} antialiased`}>
<Tag />
{children}
<script