From 3b7d039ddec5ad5c867ddfb8456263a3f49b1bf4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:45:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 22d1883..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Open_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "MomentHub - Guest Photo Collection Without an App", description: "Collect photos, videos, and messages from guests via QR code. No app required. Organized beautifully. Perfect for weddings, events, and celebrations.", keywords: "guest photo collection, QR code, event memories, wedding photos, no app required", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "MomentHub - Turn Guest Moments into Timeless Memories", description: "Collect all photos, videos, and messages from your event instantly. One QR code. Organized beautifully. No app installation needed.", type: "website", siteName: "MomentHub", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-couple-with-pina-colada_23-2150183984.jpg", alt: "MomentHub - Guest Photo Collection Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "MomentHub - Collect Memories Without Apps", description: "Turn your celebration into timeless organized memories. One QR code. All moments. No complexity.", images: ["http://img.b2bpic.net/free-photo/side-view-couple-with-pina-colada_23-2150183984.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +