Update theme fonts

This commit is contained in:
2026-02-15 12:31:53 +00:00
parent d2a3003e8c
commit 0cfa1e9e54

View File

@@ -13,6 +13,8 @@ import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Work_Sans } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
@@ -85,6 +87,15 @@ const inter = Inter({
subsets: ["latin"],
});
const workSans = Work_Sans({
variable: "--font-work-sans",
subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -93,7 +104,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body className={`${workSans.variable} ${sourceSans3.variable} antialiased`}>
<Tag />
{children}