diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 22ea11c..785c143 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,20 @@ import type { Metadata } from "next"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Walmart Panorama City | Van Nuys, CA Store & Services", description: "Visit Walmart in Panorama City for pharmacy, bakery, clothing & flowers. Open 6 AM–11 PM. Call +1 818-830-0350 or get directions today.", keywords: "Walmart near me, Walmart Panorama City, Van Nuys shopping, pharmacy, grocery store", robots: { - index: true, - follow: true - }, - openGraph: { - title: "Walmart Panorama City | Shopping, Pharmacy & Services", description: "Your local Walmart in Panorama City. Pharmacy, fresh bakery, clothing, flowers & more. Open 6 AM–11 PM daily.", url: "https://panorama-walmart.com", siteName: "Walmart Panorama City", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-shopping-grocery-store-by-refrigerator_1303-16010.jpg", alt: "Walmart Panorama City Store" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Walmart Panorama City | Van Nuys Shopping", description: "Pharmacy, bakery, clothing & fresh flowers. Call +1 818-830-0350 today.", images: ["http://img.b2bpic.net/free-photo/woman-shopping-grocery-store-by-refrigerator_1303-16010.jpg"] - } -}; + title: "Walmart Panorama City - Local Shopping Made Easy", description: "Your local Walmart in Panorama City. Shop pharmacy, bakery, clothing, and fresh flowers. Open 6 AM - 11 PM daily."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +