Update src/app/contact/page.tsx

This commit is contained in:
2026-03-04 11:42:41 +00:00
parent c12fb7cc01
commit 518cd46f4c

View File

@@ -17,8 +17,7 @@ export default function ContactPage() {
const footerColumns = [
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "Collections", href: "/collections" },
{ label: "Suits & Formal", href: "/collections" },
{ label: "Casual Wear", href: "/collections" },
@@ -26,8 +25,7 @@ export default function ContactPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Visit Us", href: "/visit" },
{ label: "Contact", href: "/contact" },
@@ -35,8 +33,7 @@ export default function ContactPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: (065) 682 9469", href: "tel:+353656829469" },
{ label: "37 O'Connell Street, Ennis", href: "#" },
{ label: "Co. Clare, V95 W938", href: "#" },
@@ -44,8 +41,7 @@ export default function ContactPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#privacy" },
{ label: "Terms & Conditions", href: "#terms" },
],
@@ -70,9 +66,7 @@ export default function ContactPage() {
brandName="Murphy's Menswear"
navItems={navItems}
button={{
text: "Call Now",
href: "tel:+353656829469",
}}
text: "Call Now", href: "tel:+353656829469"}}
animateOnLoad={true}
/>
</div>
@@ -81,28 +75,20 @@ export default function ContactPage() {
<ContactSplitForm
title="Get in Touch"
description="Have questions about our products or services? We'd love to hear from you. Fill out the form below and we'll get back to you as soon as possible."
imageSrc="http://img.b2bpic.net/free-photo/man-standing-shop-looking-mirror-choosing-tie_7502-4399.jpg?_wi=3"
imageSrc="http://img.b2bpic.net/free-photo/man-standing-shop-looking-mirror-choosing-tie_7502-4399.jpg"
imageAlt="Murphy's Menswear customer service"
mediaPosition="right"
mediaAnimation="slide-up"
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,
},
]}
textarea={{
name: "message",
placeholder: "Tell us what you're looking for...",
rows: 5,
name: "message", placeholder: "Tell us what you're looking for...", rows: 5,
required: true,
}}
useInvertedBackground={false}
@@ -119,21 +105,13 @@ export default function ContactPage() {
tag="Contact Details"
metrics={[
{
id: "1",
value: "Phone",
description: "(065) 682 9469 - Available Daily",
},
id: "1", value: "Phone", description: "(065) 682 9469 - Available Daily"},
{
id: "2",
value: "Location",
description: "37 O'Connell Street, Ennis, Co. Clare, V95 W938",
},
id: "2", value: "Location", description: "37 O'Connell Street, Ennis, Co. Clare, V95 W938"},
{
id: "3",
value: "Hours",
description: "Open Daily - Closes 6:00 PM",
},
id: "3", value: "Hours", description: "Open Daily - Closes 6:00 PM"},
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>