5 Commits

Author SHA1 Message Date
d360473ada Update src/app/page.tsx 2026-03-04 07:14:22 +00:00
f1019fba80 Update src/app/layout.tsx 2026-03-04 07:14:22 +00:00
cd905c2710 Merge version_1 into main
Merge version_1 into main
2026-03-04 07:12:47 +00:00
7e3476247a Merge version_1 into main
Merge version_1 into main
2026-03-04 07:11:58 +00:00
fd038b389c Merge version_1 into main
Merge version_1 into main
2026-03-04 07:10:44 +00:00
2 changed files with 10 additions and 47 deletions

View File

@@ -1,56 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Halant } from "next/font/google"; import "@/styles/globals.css";
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"],
});
export const metadata: Metadata = { 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 AM11 PM. Call +1 818-830-0350 or get directions today.", keywords: "Walmart near me, Walmart Panorama City, Van Nuys shopping, pharmacy, grocery store", robots: { 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."};
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 AM11 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"]
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body>
<body {children}
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -108,7 +108,7 @@ export default function LandingPage() {
]} ]}
buttons={[ buttons={[
{ {
text: "Call Pharmacy", href: "tel:+1-818-830-0350" text: "Fill Prescription", href: "tel:+1-818-830-0350"
} }
]} ]}
/> />