From 5ec3b1cba4bf453b909a4d15939c25433ca3179b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:59:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 64 +++++----------------------------------------- 1 file changed, 7 insertions(+), 57 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ef194d9..8c92253 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "9 Pharmacy - Free Delivery Pharmacy & Specialty Medications in Georgia", - description: "Georgia pharmacy offering free delivery, specialty medications, compounded drugs, and comprehensive insurance support. Accessible, affordable, personalized healthcare solutions.", - keywords: "pharmacy, free delivery, specialty medications, compounded drugs, Georgia pharmacy, Duluth, Norcross, healthcare", - metadataBase: new URL("https://9pharmacy.com"), - alternates: { - canonical: "https://9pharmacy.com", - }, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "9 Pharmacy - Revolutionizing Healthcare Access", - description: "Free medication delivery, specialty drug dispensing, and patient-focused pharmacy services.", - url: "https://9pharmacy.com", - siteName: "9 Pharmacy", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/selective-focus-essential-oil-pharmacy-shelves-is-ready-be-buy-by-client-man-doing-inventory-background-drugstore-is-vital-resource-community-providing-access-health-services_482257-66181.jpg", - alt: "9 Pharmacy - Professional Healthcare Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "9 Pharmacy - Free Delivery Pharmacy", - description: "Accessible, affordable, personalized pharmacy services in Georgia.", - images: [ - "http://img.b2bpic.net/free-photo/selective-focus-essential-oil-pharmacy-shelves-is-ready-be-buy-by-client-man-doing-inventory-background-drugstore-is-vital-resource-community-providing-access-health-services_482257-66181.jpg", - ], - }, -}; + title: "9 Pharmacy - Free Medication Delivery & Specialty Care", description: "Medication Delivered Free. Care That Listens. Free home delivery, specialty medications, insurance support, and personalized pharmacy services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}