From fc353e176c4776e7e31d70305bb354fc2cd35a5f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 18:01:38 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1411 +------------------------------------------- 1 file changed, 11 insertions(+), 1400 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3a0a825..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,27 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Selvam Malligai Shop | Jasmine Flower Wholesale in Virudhachalam", description: "Fresh malligai (jasmine) and wholesale flowers in Virudhachalam. Trusted by retailers, temples, and event organizers. Call 099650 20268 for competitive prices.", keywords: "Virudhachalam flower wholesale, malligai wholesale Virudhachalam, jasmine flower supplier Virudhachalam, flower shop Virudhachalam, fresh flowers Virudhachalam", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Selvam Malligai Shop - Fresh Flower Wholesale", description: "High-quality jasmine and fresh flowers at reasonable wholesale prices in Virudhachalam", siteName: "Selvam Malligai Shop", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/natural-healthy-beauty-nature-sea_1203-4398.jpg", alt: "Fresh malligai flowers"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Selvam Malligai Shop - Fresh Flower Wholesale", description: "Trusted jasmine and flower wholesaler in Virudhachalam", images: ["http://img.b2bpic.net/free-photo/natural-healthy-beauty-nature-sea_1203-4398.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -