From aa961483bf8da21e24c0de660bde87bdd0cb34e9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 07:09:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 41 ++++++----------------------------------- 1 file changed, 6 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f31a293..ad7bb37 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Premium Wedding Card Templates | TemplateArtisan", description: "Discover stunning, customizable wedding card templates. Create professional invitations in minutes with our intuitive designer. Browse hundreds of designs today.", keywords: "wedding cards, invitation templates, customizable designs, wedding stationery, digital cards", openGraph: { - title: "Premium Wedding Card Templates", description: "Create beautiful, customizable wedding invitations with TemplateArtisan's professional templates.", type: "website", siteName: "TemplateArtisan" - }, - robots: { - index: true, - follow: true - } -}; + title: "TemplateArtisan - Wedding Card Templates", description: "Discover stunning, professionally designed wedding card templates. Customize and create the perfect invitation for your special day."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}