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