Merge version_2 into main #4

Merged
bender merged 4 commits from version_2 into main 2026-04-06 22:05:05 +00:00
Showing only changes of commit efbc317618 - Show all commits

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
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.',
};
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
export default function RootLayout({
@@ -28,7 +29,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body className={`${figtree.variable} antialiased`}>
<Tag />
{children}
<script