Update src/app/layout.tsx

This commit is contained in:
2026-01-08 20:24:42 +00:00
parent 185ad4a730
commit 94998f3f90

View File

@@ -1,11 +1,12 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Prata } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const prata = Prata({
variable: "--font-prata", subsets: ["latin"],
weight: ["400"],
});
export const metadata: Metadata = {
@@ -38,7 +39,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={dmSans.variable}
className={prata.variable}
>
<Tag />
{children}