Update src/app/contact/page.tsx

This commit is contained in:
2026-05-11 01:47:12 +00:00
parent ac1279887e
commit aec0021696

View File

@@ -26,21 +26,13 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Gallery",
id: "/gallery",
},
name: "Gallery", id: "/gallery"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="H & M Handyman Solutions"
/>
@@ -53,17 +45,11 @@ export default function LandingPage() {
description="Provide details about your project and we will reach out shortly."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
},
name: "name", type: "text", placeholder: "Your Name"},
{
name: "email",
type: "email",
placeholder: "Your Email",
},
name: "email", type: "email", placeholder: "Your Email"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DYa0GPktoo5iA8DC3teDpCZ1Xu/professional-portrait-of-a-handyman-in-c-1778461846342-002dcb7e.png?_wi=6"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DYa0GPktoo5iA8DC3teDpCZ1Xu/latino-professional-handyman-portrait-1778471321345-f3g4h5i6.png"
/>
</div>
@@ -73,17 +59,13 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Contact Details"
description="Reach out directly for faster response times."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DYa0GPktoo5iA8DC3teDpCZ1Xu/a-professional-high-end-handyman-work-sc-1778461837446-48058e3b.png?_wi=3"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DYa0GPktoo5iA8DC3teDpCZ1Xu/hanser-ramirez-professional-portrait-1778471310234-b9c0d1e2.png"
mediaAnimation="slide-up"
bulletPoints={[
{
title: "Phone",
description: "(863) 812-0046",
},
title: "Phone", description: "(863) 812-0046"},
{
title: "Email",
description: "contact@handyman.com",
},
title: "Email", description: "contact@handyman.com"},
]}
/>
</div>
@@ -93,37 +75,23 @@ export default function LandingPage() {
logoText="H & M Handyman Solutions"
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Drywall Repair",
href: "/services",
},
label: "Drywall Repair", href: "/services"},
{
label: "Painting",
href: "/services",
},
label: "Painting", href: "/services"},
{
label: "Fixture Installation",
href: "/services",
},
label: "Fixture Installation", href: "/services"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
{
label: "Gallery",
href: "/gallery",
},
label: "Gallery", href: "/gallery"},
],
},
]}
@@ -133,4 +101,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}