Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-04-25 17:20:50 +00:00
2 changed files with 7 additions and 2 deletions

View File

@@ -26,6 +26,11 @@ export const metadata: Metadata = {
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
@@ -39,7 +44,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

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