Update theme fonts

This commit is contained in:
2026-05-27 02:04:11 +00:00
parent cd97363c3a
commit dc37851bc2

View File

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