Update theme fonts

This commit is contained in:
2026-02-09 12:29:51 +00:00
parent a880cc6b5c
commit 753fde1053

View File

@@ -2,7 +2,7 @@ import type { Metadata } from "next";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Mulish } from "next/font/google";
import { Plus_Jakarta_Sans } from "next/font/google";
import { Inter } from "next/font/google";
const interTight = Inter_Tight({
@@ -40,6 +40,15 @@ const inter = Inter({
subsets: ["latin"],
});
const plusJakartaSans = Plus_Jakarta_Sans({
variable: "--font-plus-jakarta-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -49,7 +58,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={{mulish.variable} {inter.variable}} antialiased`}
className={{plusJakartaSans.variable} {inter.variable}} {inter.variable}} antialiased`}
>
<Tag />
{children}