Update theme fonts

This commit is contained in:
2026-02-15 12:54:25 +00:00
parent f6063bb1cc
commit bb9f0c5db7

View File

@@ -24,6 +24,8 @@ import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Josefin_Sans } from "next/font/google";
import { Inter } from "next/font/google";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
@@ -147,6 +149,16 @@ const publicSans = Public_Sans({
subsets: ["latin"],
});
const josefinSans = Josefin_Sans({
variable: "--font-josefin-sans",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -155,7 +167,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<body className={`${josefinSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}