Update theme fonts

This commit is contained in:
2026-04-18 05:30:14 +00:00
parent 7e58fae043
commit a2fe648c3b

View File

@@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Source_Sans_3 } from "next/font/google";
import { Lato } from "next/font/google";
import { Manrope } from "next/font/google";
import { Poppins } from "next/font/google";
@@ -25,9 +26,11 @@ export const metadata: Metadata = {
const manrope = Manrope({
variable: "--font-manrope",
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -38,7 +41,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${poppins.variable} antialiased`}>
<Tag />
{children}
<script