Merge version_1 into main #21

Merged
bender merged 2 commits from version_1 into main 2026-02-15 13:59:13 +00:00

View File

@@ -33,6 +33,7 @@ import { Open_Sans } from "next/font/google";
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";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
@@ -198,6 +199,12 @@ const archivo = Archivo({
subsets: ["latin"],
});
const cormorantGaramond = Cormorant_Garamond({
variable: "--font-cormorant-garamond",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -206,7 +213,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body className={`${cormorantGaramond.variable} antialiased`}>
<Tag />
{children}