Merge version_4 into main #3

Merged
development merged 3 commits from version_4 into main 2026-01-17 18:03:07 +00:00
Showing only changes of commit fad8540a83 - Show all commits

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { Space_Grotesk } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
const spaceGrotesk = Space_Grotesk({
variable: "--font-space-grotesk", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -36,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={manrope.variable}
className={spaceGrotesk.variable}
>
<Tag />
{children}