Merge version_1 into main #13

Merged
bender merged 2 commits from version_1 into main 2026-02-15 12:54:11 +00:00

View File

@@ -23,6 +23,7 @@ import { Noto_Sans } from "next/font/google";
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";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
@@ -141,6 +142,11 @@ const manrope = Manrope({
subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -149,7 +155,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${publicSans.variable} antialiased`}>
<Tag />
{children}