From 8ec999788adc950ec5ba618e9e21138a86cf6239 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 22:09:59 +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 3bb1955..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: "24-Hour Pharmacy Palakkad | Novus Medicity", description: "Novus Medicity - Palakkad's trusted 24-hour pharmacy offering fast prescription filling, medicine delivery, and pharmacist consultation. Call +91 95678 87599 or WhatsApp now.", keywords: "24 hour pharmacy Palakkad, medical shop near KSRTC, online medicine order, pharmacy delivery Palakkad, pharmacist consultation", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "24-Hour Pharmacy Palakkad | Novus Medicity", description: "Your trusted 24/7 pharmacy in Palakkad. Fast prescription filling, delivery, and expert pharmacist support. Call now!", url: "https://novusmedicity.com", siteName: "Novus Medicity", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/old-man-waiting-medical-checkup_482257-119428.jpg", alt: "Novus Medicity 24-hour pharmacy"}, - ], - }, - twitter: { - card: "summary_large_image", title: "24-Hour Pharmacy Palakkad | Novus Medicity", description: "Your trusted 24/7 pharmacy in Palakkad. Fast prescription filling, delivery, and expert pharmacist support.", images: ["http://img.b2bpic.net/free-photo/old-man-waiting-medical-checkup_482257-119428.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -