Merge version_3 into main #6

Merged
bender merged 1 commits from version_3 into main 2026-03-06 14:40:07 +00:00

View File

@@ -1,13 +1,7 @@
import type { Metadata } from "next";
import { Lavender_Blue } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css";
const lavenderBlue = Lavender_Blue({
variable: "--font-lavender-blue", subsets: ["latin"],
weight: ["400"],
});
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
@@ -24,7 +18,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${lato.variable} ${lavenderBlue.variable} antialiased`}>
<body className={`${lato.variable} antialiased`}>
{children}
<script