Merge version_7 into main

Merge version_7 into main
This commit was merged in pull request #8.
This commit is contained in:
2026-05-07 16:50:34 +00:00
2 changed files with 3 additions and 6 deletions

View File

@@ -21,10 +21,7 @@ export const metadata: Metadata = {
},
};
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
@@ -38,7 +35,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${dmSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

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