Update theme fonts

This commit is contained in:
2026-05-06 16:46:43 +00:00
parent f78a2a8d05
commit ce5691334b

View File

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