Update src/app/contact/page.tsx

This commit is contained in:
2026-03-05 10:03:46 +00:00
parent 80c68ef326
commit 9a5c88bf30

View File

@@ -33,9 +33,7 @@ export default function ContactPage() {
brandName="Nexora"
navItems={navItems}
button={{
text: "Shop Now",
href: "/shop",
}}
text: "Shop Now", href: "/shop"}}
/>
</div>
@@ -45,32 +43,21 @@ export default function ContactPage() {
description="Have a question about our products or need help setting up your smart home? Our support team is here to help. Fill out the form below and we'll get back to you within 24 hours."
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: "Tell us how we can help...",
rows: 5,
name: "message", placeholder: "Tell us how we can help...", rows: 5,
required: true,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/people-working-call-center_23-2149288192.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/people-working-call-center_23-2149288192.jpg"
imageAlt="Our support team ready to help"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -90,7 +77,8 @@ export default function ContactPage() {
]}
useInvertedBackground={true}
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/people-working-call-center_23-2149288192.jpg?_wi=2"
metricsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/people-working-call-center_23-2149288192.jpg"
imageAlt="Professional support team"
/>
</div>
@@ -99,8 +87,7 @@ export default function ContactPage() {
<FooterBaseReveal
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "All Products", href: "/shop" },
{ label: "Featured", href: "/shop?filter=featured" },
{ label: "Trending", href: "/shop?filter=trending" },
@@ -108,8 +95,7 @@ export default function ContactPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "FAQ", href: "/faq" },
@@ -117,8 +103,7 @@ export default function ContactPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy-policy" },
{ label: "Terms of Service", href: "/terms-of-service" },
{ label: "Shipping Policy", href: "/shipping-policy" },