Update src/app/services/page.tsx

This commit is contained in:
2026-03-03 10:18:07 +00:00
parent 7fb6d8c6f7
commit 2b8a50b164

View File

@@ -12,16 +12,16 @@ import { Sparkles, Code, Cpu, TrendingUp, Globe } from "lucide-react";
const footerColumns = [
{
title: "Product", items: [
{ label: "Services", href: "services" },
{ label: "Solutions", href: "services" },
{ label: "Services", href: "/services" },
{ label: "Solutions", href: "/services" },
{ label: "Pricing", href: "#" },
{ label: "Security", href: "#" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "about" },
{ label: "Team", href: "team" },
{ label: "About Us", href: "/about" },
{ label: "Team", href: "/team" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#" },
],
@@ -39,7 +39,7 @@ const footerColumns = [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Contact", href: "contact" },
{ label: "Contact", href: "/contact" },
],
},
];
@@ -68,7 +68,7 @@ export default function ServicesPage() {
{ name: "Team", id: "/team" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Start Project", href: "contact" }}
button={{ text: "Start Project", href: "/contact" }}
brandName="DevForge"
/>
</div>
@@ -83,19 +83,23 @@ export default function ServicesPage() {
tagAnimation="blur-reveal"
features={[
{
id: "custom-development", title: "Custom Software Development", description: "Bespoke software solutions built with modern technologies and architectural best practices. We combine clean code principles, scalable architecture, and cutting-edge frameworks to create applications that stand the test of time and scale effortlessly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/custom-software-development-workflow-vis-1772527670830-12700389.png", imageAlt: "Custom software development workflow"},
id: "custom-development", title: "Custom Software Development", description: "Bespoke software solutions built with modern technologies and architectural best practices. We combine clean code principles, scalable architecture, and cutting-edge frameworks to create applications that stand the test of time and scale effortlessly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/custom-software-development-workflow-vis-1772527670830-12700389.png", imageAlt: "Custom software development workflow"
},
{
id: "ai-automation", title: "AI Automation Solutions", description: "Leverage artificial intelligence and machine learning to automate processes, enhance decision-making, and unlock new capabilities in your operations. Our AI specialists design intelligent systems that learn and adapt to optimize your business outcomes.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/artificial-intelligence-and-machine-lear-1772527671596-b816dded.png", imageAlt: "AI automation system visualization"},
id: "ai-automation", title: "AI Automation Solutions", description: "Leverage artificial intelligence and machine learning to automate processes, enhance decision-making, and unlock new capabilities in your operations. Our AI specialists design intelligent systems that learn and adapt to optimize your business outcomes.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/artificial-intelligence-and-machine-lear-1772527671596-b816dded.png", imageAlt: "AI automation system visualization"
},
{
id: "saas-mvp", title: "SaaS MVP Development", description: "Rapid development of minimum viable products for software-as-a-service platforms. We combine speed-to-market with scalable cloud-native architecture, ensuring your product can grow from launch to millions of users.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/saas-mvp-development-process-visualizati-1772527671532-6d1e632c.png", imageAlt: "SaaS MVP development process"},
id: "saas-mvp", title: "SaaS MVP Development", description: "Rapid development of minimum viable products for software-as-a-service platforms. We combine speed-to-market with scalable cloud-native architecture, ensuring your product can grow from launch to millions of users.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/saas-mvp-development-process-visualizati-1772527671532-6d1e632c.png", imageAlt: "SaaS MVP development process"
},
{
id: "enterprise-solutions", title: "Enterprise Solutions", description: "Large-scale system integration, data management, and infrastructure solutions designed for mission-critical applications. We build enterprise-grade systems with 99.99% uptime requirements, handling millions of transactions securely and reliably.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/enterprise-software-solutions-architectu-1772527673363-117f00ea.png", imageAlt: "Enterprise solutions architecture"},
id: "enterprise-solutions", title: "Enterprise Solutions", description: "Large-scale system integration, data management, and infrastructure solutions designed for mission-critical applications. We build enterprise-grade systems with 99.99% uptime requirements, handling millions of transactions securely and reliably.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQb17qiKzCXGaCapUtYG9WElAv/enterprise-software-solutions-architectu-1772527673363-117f00ea.png", imageAlt: "Enterprise solutions architecture"
},
]}
gridVariant="uniform-4"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Let's Discuss Your Project", href: "contact" }]}
buttons={[{ text: "Let's Discuss Your Project", href: "/contact" }]}
buttonAnimation="blur-reveal"
/>
</div>
@@ -139,8 +143,8 @@ export default function ServicesPage() {
text="Ready to start your next project? Let's discuss how we can help you achieve your business goals with cutting-edge software solutions."
animationType="entrance-slide"
buttons={[
{ text: "Schedule Consultation", href: "contact" },
{ text: "Get a Proposal", href: "contact" },
{ text: "Schedule Consultation", href: "/contact" },
{ text: "Get a Proposal", href: "/contact" },
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
@@ -157,4 +161,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}