Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #13.
This commit is contained in:
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 { Mulish } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Manrope } from "next/font/google"; import { Manrope } from "next/font/google";
import { Public_Sans } from "next/font/google";
const manrope = Manrope({ const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"], variable: "--font-manrope", subsets: ["latin"],
@@ -141,6 +142,11 @@ const manrope = Manrope({
subsets: ["latin"], subsets: ["latin"],
}); });
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: Readonly<{
@@ -149,7 +155,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${manrope.variable} antialiased`}> <body className={`${publicSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}