Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-02-19 02:18:47 +00:00

View File

@@ -5,6 +5,7 @@ import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Raleway } from "next/font/google";
import { Instrument_Sans } from "next/font/google";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
@@ -40,6 +41,11 @@ const raleway = Raleway({
subsets: ["latin"],
});
const instrumentSans = Instrument_Sans({
variable: "--font-instrument-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -48,7 +54,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${instrumentSans.variable} antialiased`}>
<Tag />
{children}