4 Commits

Author SHA1 Message Date
b164e55861 Merge version_5 into main
Merge version_5 into main
2026-02-27 13:51:19 +00:00
f4a36668bb Update src/app/styles/base.css 2026-02-27 13:51:15 +00:00
3207eb0be9 Update src/app/layout.tsx 2026-02-27 13:51:14 +00:00
1bbfb437ee Merge version_4 into main
Merge version_4 into main
2026-02-27 13:43:07 +00:00
2 changed files with 9 additions and 9 deletions

View File

@@ -1,17 +1,17 @@
import type { Metadata } from "next";
import { Josefin_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { IBM_Plex_Sans } from "next/font/google";
import { Roboto_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const josefinSans = Josefin_Sans({
variable: "--font-josefin-sans", subsets: ["latin"],
const ibmPlexSans = IBM_Plex_Sans({
variable: "--font-ibm-plex-sans", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const robotoMono = Roboto_Mono({
variable: "--font-roboto-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -37,7 +37,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${josefinSans.variable} ${inter.variable} antialiased`}
className={`${ibmPlexSans.variable} ${robotoMono.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-ibm-plex-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-josefin-sans), sans-serif;
font-family: var(--font-ibm-plex-sans), sans-serif;
}