Merge version_3 into main #5

Merged
development merged 2 commits from version_3 into main 2026-02-09 12:39:15 +00:00
2 changed files with 14 additions and 5 deletions

View File

@@ -2,8 +2,8 @@ import type { Metadata } from "next";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Noto_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Work_Sans } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
@@ -39,6 +39,15 @@ const inter = Inter({
subsets: ["latin"],
});
const workSans = Work_Sans({
variable: "--font-work-sans",
subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -48,7 +57,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={{notoSans.variable} {inter.variable}} antialiased`}
className={`${workSans.variable} ${sourceSans3.variable} {notoSans.variable`} {inter.variable}} antialiased`}
>
<Tag />
{children}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-source-sans-3), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-noto-sans), sans-serif;
font-family: var(--font-work-sans), sans-serif;
}