Update theme fonts

This commit is contained in:
2026-04-09 23:18:33 +00:00
parent 9b470e8a95
commit 14741a763a

View File

@@ -11,6 +11,7 @@ import { Roboto } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Poppins } from "next/font/google";
import { Manrope } from "next/font/google";
import { Figtree } from "next/font/google";
@@ -32,8 +33,9 @@ export const metadata: Metadata = {
const manrope = Manrope({
variable: "--font-manrope",
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
@@ -45,7 +47,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${figtree.variable} antialiased`}>
{children}
<script