Update src/app/layout.tsx

This commit is contained in:
2025-12-26 00:47:09 +00:00
parent e68dea963c
commit 3ea66c4393

View File

@@ -1,13 +1,19 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Prata } from "next/font/google"; import { Inter } from "next/font/google";
import { Merriweather } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const prata = Prata({ const inter = Inter({
variable: "--font-prata", variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
weight: ["400"], });
const merriweather = Merriweather({
variable: "--font-merriweather",
subsets: ["latin"],
weight: ["300", "400", "700", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
@@ -41,7 +47,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${prata.variable} antialiased`} className={`${inter.variable} ${merriweather.variable} antialiased`}
> >
<Tag /> <Tag />
{children} {children}