Update src/app/layout.tsx

This commit is contained in:
2026-06-11 13:32:54 +00:00
parent fe780b6b66
commit 0979885071

View File

@@ -1,21 +1,18 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -32,7 +29,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
className={`${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
@@ -45,4 +42,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}