Update src/app/layout.tsx

This commit is contained in:
2026-04-06 22:05:00 +00:00
parent ee1a9c7d3e
commit efbc317618

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito_Sans } from "next/font/google"; import { Nunito_Sans } from "next/font/google";
import { Figtree } from "next/font/google";
@@ -15,9 +16,9 @@ export const metadata: Metadata = {
description: 'Send a video of your Funko Pop and get instant AI-powered damage detection, authenticity verification, and live price market tracking.', description: 'Send a video of your Funko Pop and get instant AI-powered damage detection, authenticity verification, and live price market tracking.',
}; };
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", const figtree = Figtree({
subsets: ["latin"], variable: "--font-figtree", subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -28,7 +29,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}> <body className={`${figtree.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script