Update theme fonts

This commit is contained in:
2026-02-15 12:01:36 +00:00
parent 64614ffc4b
commit 3f60c3b3ba

View File

@@ -10,6 +10,7 @@ import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
@@ -68,6 +69,11 @@ const inter = Inter({
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -76,7 +82,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body className={`${manrope.variable} antialiased`}>
<Tag />
{children}