Update theme fonts

This commit is contained in:
2026-04-15 17:23:34 +00:00
parent c8fcc76f9f
commit b9ca1ed4a2

View File

@@ -12,6 +12,7 @@ import { Libre_Baskerville } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Roboto } from "next/font/google";
import { Poppins } from "next/font/google";
@@ -29,10 +30,11 @@ export const metadata: Metadata = {
const roboto = Roboto({
variable: "--font-roboto",
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -43,7 +45,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body className={`${poppins.variable} antialiased`}>
<Tag />
{children}
<script