Update src/app/services/page.tsx

This commit is contained in:
2026-03-06 17:18:19 +00:00
parent 179b9e577b
commit 5d191480a3

View File

@@ -20,8 +20,7 @@ export default function ServicesPage() {
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Website Design", href: "/services" },
{ label: "Website Redesign", href: "/services" },
{ label: "Mobile Optimization", href: "/services" },
@@ -29,8 +28,7 @@ export default function ServicesPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Portfolio", href: "portfolio" },
{ label: "Pricing", href: "pricing" },
@@ -38,8 +36,7 @@ export default function ServicesPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Disclaimer", href: "#" },
@@ -68,9 +65,7 @@ export default function ServicesPage() {
id: item.id,
}))}
button={{
text: "Get Your Website",
href: "contact",
}}
text: "Get Your Website", href: "contact"}}
animateOnLoad={true}
/>
</div>
@@ -82,22 +77,16 @@ export default function ServicesPage() {
features={[
{
icon: Zap,
title: "Custom Website Design",
description:
"Beautiful, high-converting websites built specifically for your business. We create unique designs that reflect your brand and engage your target audience.",
},
title: "Custom Website Design", description:
"Beautiful, high-converting websites built specifically for your business. We create unique designs that reflect your brand and engage your target audience."},
{
icon: Smartphone,
title: "Mobile Optimization",
description:
"Fully responsive designs that look perfect on all devices. With over 60% of web traffic from mobile, we ensure your site performs flawlessly everywhere.",
},
title: "Mobile Optimization", description:
"Fully responsive designs that look perfect on all devices. With over 60% of web traffic from mobile, we ensure your site performs flawlessly everywhere."},
{
icon: Search,
title: "SEO & Lead Generation",
description:
"Websites optimized for search engines to attract qualified leads. We implement proven SEO strategies to help your business rank higher and capture more customers.",
},
title: "SEO & Lead Generation", description:
"Websites optimized for search engines to attract qualified leads. We implement proven SEO strategies to help your business rank higher and capture more customers."},
]}
animationType="slide-up"
textboxLayout="default"
@@ -116,9 +105,10 @@ export default function ServicesPage() {
{ value: "100%", title: "Mobile responsive on all devices" },
]}
useInvertedBackground={true}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUYJU6LXiTBEy0Kb9BXpupMdnR/a-professional-business-owner-or-entrepr-1772817344297-fb9fc28e.png?_wi=2"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUYJU6LXiTBEy0Kb9BXpupMdnR/a-professional-business-owner-or-entrepr-1772817344297-fb9fc28e.png"
imageAlt="Web design process and team collaboration"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
@@ -128,32 +118,21 @@ export default function ServicesPage() {
description="Let's discuss how our web design services can transform your business. Schedule a free consultation with our team and we'll create a custom plan for your success."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Email Address",
required: true,
name: "email", type: "email", placeholder: "Email Address", required: true,
},
{
name: "service",
type: "text",
placeholder: "Service Interested In",
required: true,
name: "service", type: "text", placeholder: "Service Interested In", required: true,
},
]}
textarea={{
name: "details",
placeholder: "Tell us about your project...",
rows: 4,
name: "details", placeholder: "Tell us about your project...", rows: 4,
required: false,
}}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUYJU6LXiTBEy0Kb9BXpupMdnR/a-professional-web-design-team-having-a--1772817344156-344998f3.png?_wi=2"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUYJU6LXiTBEy0Kb9BXpupMdnR/a-professional-web-design-team-having-a--1772817344156-344998f3.png"
imageAlt="Professional web design team meeting"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -176,4 +155,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}