Update src/app/services/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import { Car, Package, Scissors, Wrench } from "lucide-react";
|
||||
import { Banknote, Car, HeartPulse, Package, Scissors, Wrench } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -28,36 +28,19 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
href: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Stores",
|
||||
id: "stores",
|
||||
href: "#stores",
|
||||
},
|
||||
name: "Stores", id: "/stores"},
|
||||
{
|
||||
name: "Dining & Entertainment",
|
||||
id: "dining-entertainment",
|
||||
href: "#dining-entertainment",
|
||||
},
|
||||
name: "Dining & Entertainment", id: "/dining-entertainment"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
href: "#services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
href: "#contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Spring Valley"
|
||||
button={{
|
||||
text: "Explore Stores",
|
||||
href: "#stores",
|
||||
}}
|
||||
text: "Explore Stores", href: "#stores"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -65,37 +48,26 @@ export default function LandingPage() {
|
||||
<FeatureBorderGlow
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
icon: Banknote,
|
||||
title: "Financial Services",
|
||||
description: "Access ATMs, banking facilities, and financial advice right here in Spring Valley.",
|
||||
},
|
||||
title: "Financial Services", description: "Access ATMs, banking facilities, and financial advice right here in Spring Valley."},
|
||||
{
|
||||
icon: HeartPulse,
|
||||
title: "Health & Wellness",
|
||||
description: "Pharmacies, clinics, and wellness centers for your health and well-being needs.",
|
||||
},
|
||||
title: "Health & Wellness", description: "Pharmacies, clinics, and wellness centers for your health and well-being needs."},
|
||||
{
|
||||
icon: Scissors,
|
||||
title: "Personal Care & Beauty",
|
||||
description: "Salons, barbers, and spas offering a range of treatments and personal grooming services.",
|
||||
},
|
||||
title: "Personal Care & Beauty", description: "Salons, barbers, and spas offering a range of treatments and personal grooming services."},
|
||||
{
|
||||
icon: Wrench,
|
||||
title: "Tech & Device Repair",
|
||||
description: "Expert repair services for your smartphones, laptops, and other electronic devices.",
|
||||
},
|
||||
title: "Tech & Device Repair", description: "Expert repair services for your smartphones, laptops, and other electronic devices."},
|
||||
{
|
||||
icon: Package,
|
||||
title: "Postal & Shipping",
|
||||
description: "Convenient drop-off and pick-up points for all your mailing and parcel needs.",
|
||||
},
|
||||
title: "Postal & Shipping", description: "Convenient drop-off and pick-up points for all your mailing and parcel needs."},
|
||||
{
|
||||
icon: Car,
|
||||
title: "Automotive Care",
|
||||
description: "Quick services for your vehicle, including detailing and minor repairs, while you shop.",
|
||||
},
|
||||
title: "Automotive Care", description: "Quick services for your vehicle, including detailing and minor repairs, while you shop."},
|
||||
]}
|
||||
title="Convenient Services for Your Every Need"
|
||||
description="From banking to beauty, Spring Valley offers a wide array of essential services to make your visit complete."
|
||||
@@ -109,25 +81,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What are the operating hours for services?",
|
||||
content: "Operating hours vary by service provider. Please check individual store listings or contact them directly for specific times.",
|
||||
},
|
||||
id: "1", title: "What are the operating hours for services?", content: "Operating hours vary by service provider. Please check individual store listings or contact them directly for specific times."},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do I need an appointment for beauty services?",
|
||||
content: "While some beauty services accept walk-ins, we recommend booking an appointment in advance to ensure availability, especially during peak hours.",
|
||||
},
|
||||
id: "2", title: "Do I need an appointment for beauty services?", content: "While some beauty services accept walk-ins, we recommend booking an appointment in advance to ensure availability, especially during peak hours."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Are there ATM services available?",
|
||||
content: "Yes, ATMs are conveniently located throughout the shopping center. Please refer to our directory for exact locations.",
|
||||
},
|
||||
id: "3", title: "Are there ATM services available?", content: "Yes, ATMs are conveniently located throughout the shopping center. Please refer to our directory for exact locations."},
|
||||
{
|
||||
id: "4",
|
||||
title: "Can I drop off packages for shipping?",
|
||||
content: "Yes, we have postal and shipping services available. Check our directory for the location of the nearest service point.",
|
||||
},
|
||||
id: "4", title: "Can I drop off packages for shipping?", content: "Yes, we have postal and shipping services available. Check our directory for the location of the nearest service point."},
|
||||
]}
|
||||
title="Service FAQs"
|
||||
description="Find quick answers to common questions about the services available at Spring Valley."
|
||||
@@ -140,20 +100,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
tag="Need Assistance?"
|
||||
title="Connect with Our Service Providers"
|
||||
description="Have specific questions or need more details about a particular service? Reach out directly!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
text: "Contact Us", href: "/contact"},
|
||||
{
|
||||
text: "View All Services",
|
||||
href: "/services",
|
||||
},
|
||||
text: "View All Services", href: "/services"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -162,71 +117,43 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
title: "Shop", items: [
|
||||
{
|
||||
label: "All Stores",
|
||||
href: "/stores",
|
||||
},
|
||||
label: "All Stores", href: "/stores"},
|
||||
{
|
||||
label: "Fashion",
|
||||
href: "/stores",
|
||||
},
|
||||
label: "Fashion", href: "/stores"},
|
||||
{
|
||||
label: "Electronics",
|
||||
href: "/stores",
|
||||
},
|
||||
label: "Electronics", href: "/stores"},
|
||||
{
|
||||
label: "Home Goods",
|
||||
href: "/stores",
|
||||
},
|
||||
label: "Home Goods", href: "/stores"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Dine & Play",
|
||||
items: [
|
||||
title: "Dine & Play", items: [
|
||||
{
|
||||
label: "Restaurants",
|
||||
href: "/dining-entertainment",
|
||||
},
|
||||
label: "Restaurants", href: "/dining-entertainment"},
|
||||
{
|
||||
label: "Entertainment",
|
||||
href: "/dining-entertainment",
|
||||
},
|
||||
label: "Entertainment", href: "/dining-entertainment"},
|
||||
{
|
||||
label: "Events",
|
||||
href: "/dining-entertainment",
|
||||
},
|
||||
label: "Events", href: "/dining-entertainment"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "All Services",
|
||||
href: "/services",
|
||||
},
|
||||
label: "All Services", href: "/services"},
|
||||
{
|
||||
label: "Financial",
|
||||
href: "/services",
|
||||
},
|
||||
label: "Financial", href: "/services"},
|
||||
{
|
||||
label: "Personal Care",
|
||||
href: "/services",
|
||||
},
|
||||
label: "Personal Care", href: "/services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Spring Valley",
|
||||
items: [
|
||||
title: "Spring Valley", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "/",
|
||||
},
|
||||
label: "Privacy Policy", href: "/"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user