Merge version_1 into main #22

Merged
bender merged 2 commits from version_1 into main 2026-02-15 14:10:35 +00:00

View File

@@ -34,6 +34,7 @@ import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import { Cormorant_Garamond } from "next/font/google";
import { DM_Sans } from "next/font/google";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
@@ -205,6 +206,11 @@ const cormorantGaramond = Cormorant_Garamond({
weight: ["300", "400", "500", "600", "700"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -213,7 +219,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${cormorantGaramond.variable} antialiased`}>
<body className={`${dmSans.variable} antialiased`}>
<Tag />
{children}