11 Commits

Author SHA1 Message Date
18dfa55a5f Update src/app/page.tsx 2026-03-04 07:20:31 +00:00
eb2ad5c94b Update src/app/layout.tsx 2026-03-04 07:20:31 +00:00
66144c1a8e Merge version_3 into main
Merge version_3 into main
2026-03-04 07:16:38 +00:00
99bd08d7df Update src/app/page.tsx 2026-03-04 07:16:33 +00:00
a77fbfe3e7 Update src/app/layout.tsx 2026-03-04 07:16:33 +00:00
34bc2383d9 Merge version_2 into main
Merge version_2 into main
2026-03-04 07:14:26 +00:00
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 16 additions and 49 deletions

View File

@@ -1,56 +1,21 @@
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 +1383,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -108,7 +108,10 @@ export default function LandingPage() {
]} ]}
buttons={[ buttons={[
{ {
text: "Call Pharmacy", href: "tel:+1-818-830-0350" text: "Fill Prescription", href: "tel:+1-818-830-0350"
},
{
text: "Browse All Departments", href: "#services"
} }
]} ]}
/> />
@@ -248,7 +251,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactFaq <ContactFaq
ctaTitle="Get in Touch" ctaTitle="Get in Touch"
ctaDescription="Call us for immediate assistance or fill out the form below. Our team is ready to help!" ctaDescription="Need help? Call us now for instant support or use the FAQs below to find quick answers"
ctaIcon={Phone} ctaIcon={Phone}
ctaButton={{ ctaButton={{
text: "Call +1 818-830-0350", href: "tel:+1-818-830-0350" text: "Call +1 818-830-0350", href: "tel:+1-818-830-0350"
@@ -340,4 +343,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }