Update theme fonts

This commit is contained in:
2026-05-30 06:15:40 +00:00
parent 6b0f355589
commit 5f7e7bf6d9

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Roboto } from "next/font/google";
import { Public_Sans } from "next/font/google";
@@ -41,10 +42,10 @@ export const metadata: Metadata = {
},
};
const roboto = Roboto({
variable: "--font-roboto",
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -55,7 +56,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body className={`${publicSans.variable} antialiased`}>
<Tag />
{children}
<script