Update src/app/services/page.tsx

This commit is contained in:
2026-03-03 17:07:18 +00:00
parent 017a6e6659
commit ed1c240043

View File

@@ -6,7 +6,6 @@ import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/F
import ProductCardFour from "@/components/sections/product/ProductCardFour";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterCard from "@/components/sections/footer/FooterCard";
import Link from "next/link";
import { Code, Zap, Palette, Cpu, Lock, TrendingUp, Mail, Github, Linkedin, Twitter, Package } from "lucide-react";
const navItems = [
@@ -34,9 +33,9 @@ export default function ServicesPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
brandName="smartbiz"
brandName="Webuild"
bottomLeftText="Digital Innovation"
bottomRightText="hello@smartbiz.dev"
bottomRightText="hello@webuild.dev"
/>
</div>
@@ -80,11 +79,11 @@ export default function ServicesPage() {
tagIcon={Package}
products={[
{
id: "1", name: "Website Design & Development", price: "Starting $2,999", variant: "Custom Design Responsive Layout", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWjA802o7PKeHYkcYoaQioEb8/designer-working-on-responsive-website-m-1772556087273-060ae977.png?_wi=1", imageAlt: "Website design service"},
id: "1", name: "Website Design & Development", price: "Starting $2,999", variant: "Custom Design Responsive Layout", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWjA802o7PKeHYkcYoaQioEb8/designer-working-on-responsive-website-m-1772556087273-060ae977.png", imageAlt: "Website design service"},
{
id: "2", name: "Web Automation & Integration", price: "Starting $1,999", variant: "API Integration Workflow Automation", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWjA802o7PKeHYkcYoaQioEb8/abstract-visualization-of-website-automa-1772556087854-f79afd8a.png?_wi=1", imageAlt: "Automation integration service"},
id: "2", name: "Web Automation & Integration", price: "Starting $1,999", variant: "API Integration Workflow Automation", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWjA802o7PKeHYkcYoaQioEb8/abstract-visualization-of-website-automa-1772556087854-f79afd8a.png", imageAlt: "Automation integration service"},
{
id: "3", name: "Performance & Optimization", price: "Starting $999", variant: "Speed Optimization SEO Enhancement", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWjA802o7PKeHYkcYoaQioEb8/developer-coding-modern-web-applications-1772556086863-87ad7072.png?_wi=1", imageAlt: "Performance optimization service"},
id: "3", name: "Performance & Optimization", price: "Starting $999", variant: "Speed Optimization SEO Enhancement", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWjA802o7PKeHYkcYoaQioEb8/developer-coding-modern-web-applications-1772556086863-87ad7072.png", imageAlt: "Performance optimization service"},
]}
textboxLayout="default"
gridVariant="uniform-all-items-equal"
@@ -101,7 +100,7 @@ export default function ServicesPage() {
tagIcon={Mail}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWjA802o7PKeHYkcYoaQioEb8/modern-collaborative-workspace-showing-d-1772556088258-1f3bf5a6.png?_wi=2"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARWjA802o7PKeHYkcYoaQioEb8/modern-collaborative-workspace-showing-d-1772556088258-1f3bf5a6.png"
imageAlt="Services consultation"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -113,15 +112,15 @@ export default function ServicesPage() {
<div id="footer" data-section="footer">
<FooterCard
logoText="smartbiz"
copyrightText="© 2025 smartbiz. All rights reserved. Crafting the future of web development."
logoText="Webuild"
copyrightText="© 2025 Webuild. All rights reserved. Crafting the future of web development."
socialLinks={[
{ icon: Github, href: "https://github.com/smartbiz", ariaLabel: "GitHub" },
{ icon: Linkedin, href: "https://linkedin.com/company/smartbiz", ariaLabel: "LinkedIn" },
{ icon: Twitter, href: "https://twitter.com/smartbizdev", ariaLabel: "Twitter" },
{ icon: Github, href: "https://github.com/webuild", ariaLabel: "GitHub" },
{ icon: Linkedin, href: "https://linkedin.com/company/webuild", ariaLabel: "LinkedIn" },
{ icon: Twitter, href: "https://twitter.com/webuilddev", ariaLabel: "Twitter" },
]}
/>
</div>
</ThemeProvider>
);
}
}