Update src/app/contact/page.tsx

This commit is contained in:
2026-02-10 21:05:41 +00:00
parent 5e16b1946f
commit db8c1d1ecc

View File

@@ -70,32 +70,16 @@ export default function ContactPage() {
<MetricCardTen
metrics={[
{
id: "1",
title: "Initial Consultation",
subtitle: "Free 30-minute discovery call to understand your needs",
category: "Step 1",
value: "Free"
id: "1", title: "Initial Consultation", subtitle: "Free 30-minute discovery call to understand your needs", category: "Step 1", value: "Free"
},
{
id: "2",
title: "Project Proposal",
subtitle: "Detailed proposal with timeline and transparent pricing",
category: "Step 2",
value: "48hrs"
id: "2", title: "Project Proposal", subtitle: "Detailed proposal with timeline and transparent pricing", category: "Step 2", value: "48hrs"
},
{
id: "3",
title: "Design & Development",
subtitle: "Collaborative process with regular updates and feedback",
category: "Step 3",
value: "2-12wks"
id: "3", title: "Design & Development", subtitle: "Collaborative process with regular updates and feedback", category: "Step 3", value: "2-12wks"
},
{
id: "4",
title: "Launch & Support",
subtitle: "Go live with ongoing support and optimization",
category: "Step 4",
value: "Ongoing"
id: "4", title: "Launch & Support", subtitle: "Go live with ongoing support and optimization", category: "Step 4", value: "Ongoing"
}
]}
title="How We Work"
@@ -107,36 +91,35 @@ export default function ContactPage() {
/>
</div>
<FooterBase
logoText="Webuild"
copyrightText="© 2025 Webuild. All rights reserved."
columns={[
{
title: "Company",
items: [
{ label: "About", href: "/about" },
{ label: "Team", href: "/about#team" },
{ label: "Careers", href: "https://webuild.nl/careers" }
]
},
{
title: "Services",
items: [
{ label: "Web Design", href: "/services" },
{ label: "Development", href: "/services" },
{ label: "E-Commerce", href: "/services" }
]
},
{
title: "Connect",
items: [
{ label: "Contact", href: "/contact" },
{ label: "LinkedIn", href: "https://linkedin.com/company/webuild" },
{ label: "Instagram", href: "https://instagram.com/webuild" }
]
}
]}
/>
<div id="footer" data-section="footer">
<FooterBase
logoText="Webuild"
copyrightText="© 2025 Webuild. All rights reserved."
columns={[
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Team", href: "/about#team" },
{ label: "Careers", href: "https://webuild.nl/careers" }
]
},
{
title: "Services", items: [
{ label: "Web Design", href: "/services" },
{ label: "Development", href: "/services" },
{ label: "E-Commerce", href: "/services" }
]
},
{
title: "Connect", items: [
{ label: "Contact", href: "/contact" },
{ label: "LinkedIn", href: "https://linkedin.com/company/webuild" },
{ label: "Instagram", href: "https://instagram.com/webuild" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}