Update theme fonts

This commit is contained in:
2026-02-15 12:46:34 +00:00
parent 7a706b803f
commit 2d62b094f0

View File

@@ -17,6 +17,8 @@ import { Work_Sans } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Plus_Jakarta_Sans } from "next/font/google";
import { Inter } from "next/font/google";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
@@ -107,6 +109,15 @@ const openSans = Open_Sans({
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<{
@@ -115,7 +126,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<body className={`${plusJakartaSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}