Merge version_1 into main #4

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

View File

@@ -4,6 +4,7 @@ import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Instrument_Sans } from "next/font/google";
import { Figtree } from "next/font/google";
const outfit = Outfit({
variable: "--font-outfit", subsets: ["latin"],
@@ -36,6 +37,11 @@ const outfit = Outfit({
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -44,7 +50,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${outfit.variable} antialiased`}>
<body className={`${figtree.variable} antialiased`}>
<Tag />
{children}