Update src/app/contact/page.tsx

This commit is contained in:
2026-03-26 00:34:14 +00:00
parent 938bf4285c
commit 722c9be729

View File

@@ -27,36 +27,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>
@@ -67,28 +50,17 @@ export default function LandingPage() {
description="We're here to help! Send us a message and we'll get back to you as soon as possible."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
name: "email", type: "email", placeholder: "Your Email", required: true,
},
{
name: "subject",
type: "text",
placeholder: "Subject",
required: false,
name: "subject", type: "text", placeholder: "Subject", required: false,
},
]}
textarea={{
name: "message",
placeholder: "Your Message",
rows: 5,
name: "message", placeholder: "Your Message", rows: 5,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/friends-shopping-second-hand-market_23-2149353746.jpg?_wi=2"
@@ -105,35 +77,17 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "What are your operating hours?",
content: "Spring Valley is open Monday to Saturday from 10 AM to 9 PM, and Sunday from 11 AM to 6 PM. Individual store hours may vary.",
},
id: "1", title: "What are your operating hours?", content: "Spring Valley is open Monday to Saturday from 10 AM to 9 PM, and Sunday from 11 AM to 6 PM. Individual store hours may vary."},
{
id: "2",
title: "Is there free parking available?",
content: "Yes, we offer ample free parking for our visitors. Designated accessible parking spots are also available.",
},
id: "2", title: "Is there free parking available?", content: "Yes, we offer ample free parking for our visitors. Designated accessible parking spots are also available."},
{
id: "3",
title: "Do you have a lost and found?",
content: "Our lost and found is located at the Guest Services desk near the main entrance. Please visit or call us if you've lost or found an item.",
},
id: "3", title: "Do you have a lost and found?", content: "Our lost and found is located at the Guest Services desk near the main entrance. Please visit or call us if you've lost or found an item."},
{
id: "4",
title: "Are pets allowed in the mall?",
content: "Service animals are always welcome. For other pets, please check with individual stores as policies may vary.",
},
id: "4", title: "Are pets allowed in the mall?", content: "Service animals are always welcome. For other pets, please check with individual stores as policies may vary."},
{
id: "5",
title: "How do I apply for a job at a store?",
content: "Job applications are handled directly by each store. Please inquire with the specific retailer you are interested in.",
},
id: "5", title: "How do I apply for a job at a store?", content: "Job applications are handled directly by each store. Please inquire with the specific retailer you are interested in."},
{
id: "6",
title: "Where are the restrooms located?",
content: "Restrooms are conveniently located on every floor. Please consult our interactive maps for the nearest facility.",
},
id: "6", title: "Where are the restrooms located?", content: "Restrooms are conveniently located on every floor. Please consult our interactive maps for the nearest facility."},
]}
title="Common Questions"
description="Browse our frequently asked questions for quick answers to common inquiries about Spring Valley."
@@ -146,14 +100,11 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={true}
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
text="Visit Us: 123 Spring Valley Lane, Cityville, State 01234\nCall Us: (555) 123-4567\nEmail: info@springvalley.com"
buttons={[
{
text: "Get Directions",
href: "https://www.google.com/maps",
},
text: "Get Directions", href: "https://www.google.com/maps"},
]}
/>
</div>
@@ -162,71 +113,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: "/"},
],
},
]}