Merge version_3 into main #6

Merged
bender merged 2 commits from version_3 into main 2026-04-28 21:28:10 +00:00
2 changed files with 11 additions and 3 deletions

View File

@@ -19,7 +19,15 @@ export const metadata: Metadata = {
},
};
const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"] });
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -29,7 +37,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-open-sans), sans-serif;
font-family: var(--font-inter), sans-serif;
}