Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-04-12 02:42:10 +00:00
2 changed files with 3 additions and 6 deletions

View File

@@ -16,10 +16,7 @@ export const metadata: Metadata = {
description: "Generated by create next app",
};
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
@@ -33,7 +30,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;
}