Merge version_5 into main #4

Merged
development merged 3 commits from version_5 into main 2026-01-04 19:05:42 +00:00
Showing only changes of commit e05f540ce5 - Show all commits

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Plus_Jakarta_Sans } from "next/font/google";
import { Fraunces } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const plusJakartaSans = Plus_Jakarta_Sans({
variable: "--font-plus-jakarta-sans",
const fraunces = Fraunces({
variable: "--font-fraunces",
subsets: ["latin"],
});
@@ -43,7 +43,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={plusJakartaSans.variable}
className={fraunces.variable}
>
<Tag />
{children}
@@ -1269,4 +1269,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}