From be8dd855ad20cf026c8597ea2332a46cb629ce37 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 09:49:16 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 39 ++++++++++++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 890f6ca..5343788 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -4,9 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; +import TeamCardSix from "@/components/sections/team/TeamCardSix"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Heart, Workflow } from "lucide-react"; +import { Heart, Workflow, Users } from "lucide-react"; export default function AboutPage() { const navItems = [ @@ -58,6 +59,24 @@ export default function AboutPage() { /> +
+ +
+
Date: Tue, 3 Mar 2026 09:49:17 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 71 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 70 insertions(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2a0ddaa..8d42d1f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -4,8 +4,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; +import { useState } from "react"; export default function ContactPage() { + const [bookingFormData, setBookingFormData] = useState({ + email: "", fullName: "", phoneNumber: ""}); + const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, @@ -14,6 +18,12 @@ export default function ContactPage() { { name: "Contact", id: "/contact" }, ]; + const handleBookingSubmit = (e: React.FormEvent) => { + e.preventDefault(); + console.log("Booking submitted:", bookingFormData); + setBookingFormData({ email: "", fullName: "", phoneNumber: "" }); + }; + return (
+
+
+
+

Schedule a Consultation

+

Book a meeting with our team to discuss your project

+
+
+
+ + setBookingFormData({ ...bookingFormData, fullName: e.target.value })} + placeholder="Your full name" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+
+ + setBookingFormData({ ...bookingFormData, email: e.target.value })} + placeholder="your.email@example.com" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+
+ + setBookingFormData({ ...bookingFormData, phoneNumber: e.target.value })} + placeholder="+1 (555) 000-0000" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+ +
+
+
+ -
- -
- -
- -
-
+
+ +
+ +
+
+
+

Schedule a Consultation

+

Book a meeting with our team to discuss your project

+
+
+
+ + setBookingFormData({ ...bookingFormData, fullName: e.target.value })} + placeholder="Your full name" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+
+ + setBookingFormData({ ...bookingFormData, email: e.target.value })} + placeholder="your.email@example.com" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+
+ + setBookingFormData({ ...bookingFormData, phoneNumber: e.target.value })} + placeholder="+1 (555) 000-0000" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+ +
+
+
+
Date: Tue, 3 Mar 2026 09:49:18 +0000 Subject: [PATCH 4/5] Update src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index c38befc..cc3cb5a 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -51,11 +51,14 @@ export default function PortfolioPage() { tagAnimation="slide-up" products={[ { - id: "1", name: "E-Commerce Platform", price: "Fashion Retail", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/elegant-e-commerce-website-showcasing-pr-1772527371484-13167c37.png", imageAlt: "E-commerce website for fashion brand"}, + id: "1", name: "E-Commerce Platform", price: "Fashion Retail", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/elegant-e-commerce-website-showcasing-pr-1772527371484-13167c37.png", imageAlt: "E-commerce website for fashion brand" + }, { - id: "2", name: "SaaS Dashboard", price: "Tech Startup", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/tech-startup-website-with-bold-typograph-1772527372167-1a200ecf.png", imageAlt: "SaaS platform dashboard interface"}, + id: "2", name: "SaaS Dashboard", price: "Tech Startup", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/tech-startup-website-with-bold-typograph-1772527372167-1a200ecf.png", imageAlt: "SaaS platform dashboard interface" + }, { - id: "3", name: "Creative Agency Site", price: "Design Studio", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/creative-agency-portfolio-website-displa-1772527398757-8b9657e8.png", imageAlt: "Creative agency portfolio website"}, + id: "3", name: "Creative Agency Site", price: "Design Studio", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/creative-agency-portfolio-website-displa-1772527398757-8b9657e8.png", imageAlt: "Creative agency portfolio website" + }, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -75,23 +78,29 @@ export default function PortfolioPage() { { id: 1, title: "Strategy & Discovery", description: "We start by understanding your business goals, target audience, and competitive landscape. Through research and discovery, we create a solid foundation for your project.", phoneOne: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/strategic-planning-session-with-design-t-1772527371376-ae35dee8.png?_wi=1", imageAlt: "Strategy planning"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/strategic-planning-session-with-design-t-1772527371376-ae35dee8.png?_wi=1", imageAlt: "Strategy planning" + }, phoneTwo: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/strategic-planning-session-with-design-t-1772527371376-ae35dee8.png?_wi=2", imageAlt: "Discovery process"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/strategic-planning-session-with-design-t-1772527371376-ae35dee8.png?_wi=2", imageAlt: "Discovery process" + }, }, { id: 2, title: "Design & Development", description: "Our team crafts beautiful designs and builds robust websites. We focus on user experience, performance, and scalability to ensure your site exceeds expectations.", phoneOne: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/designer-working-on-a-design-on-computer-1772527371388-f91c4851.png?_wi=1", imageAlt: "Design process"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/designer-working-on-a-design-on-computer-1772527371388-f91c4851.png?_wi=1", imageAlt: "Design process" + }, phoneTwo: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/developer-coding-in-modern-ide-with-webs-1772527371268-4b56aafe.png?_wi=1", imageAlt: "Development phase"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/developer-coding-in-modern-ide-with-webs-1772527371268-4b56aafe.png?_wi=1", imageAlt: "Development phase" + }, }, { id: 3, title: "Testing & Launch", description: "Rigorous testing ensures everything works perfectly. After final refinements, we launch your website with ongoing support to keep it running smoothly.", phoneOne: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/developer-coding-in-modern-ide-with-webs-1772527371268-4b56aafe.png?_wi=2", imageAlt: "Testing phase"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/developer-coding-in-modern-ide-with-webs-1772527371268-4b56aafe.png?_wi=2", imageAlt: "Testing phase" + }, phoneTwo: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/successful-website-launch-celebration-wi-1772527369611-c8a22c79.png?_wi=1", imageAlt: "Launch celebration"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/successful-website-launch-celebration-wi-1772527369611-c8a22c79.png?_wi=1", imageAlt: "Launch celebration" + }, }, ]} showStepNumbers={true} -- 2.49.1 From e9696f3f3d10cff139fe133863c857defe16e0de Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 09:49:18 +0000 Subject: [PATCH 5/5] Update src/app/services/page.tsx --- src/app/services/page.tsx | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index fb7c987..0df8aaf 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -52,23 +52,29 @@ export default function ServicesPage() { { id: 1, title: "Web Design", description: "Stunning, user-centric website designs that captivate your audience and drive engagement. We blend aesthetics with functionality to create digital experiences that stand out.", phoneOne: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/abstract-representation-of-web-design-pr-1772527372333-1ad2600f.png?_wi=1", imageAlt: "Web design process"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/abstract-representation-of-web-design-pr-1772527372333-1ad2600f.png?_wi=1", imageAlt: "Web design process" + }, phoneTwo: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/branding-identity-elements-spread-out-in-1772527370942-4bda01ed.png?_wi=1", imageAlt: "Branding elements"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/branding-identity-elements-spread-out-in-1772527370942-4bda01ed.png?_wi=1", imageAlt: "Branding elements" + }, }, { id: 2, title: "Web Development", description: "Robust, scalable websites built with modern technologies. From responsive design to seamless backend integration, we ensure your website performs flawlessly across all devices.", phoneOne: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/code-editor-on-screen-displaying-clean-o-1772527370169-57931e12.png?_wi=1", imageAlt: "Development code"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/code-editor-on-screen-displaying-clean-o-1772527370169-57931e12.png?_wi=1", imageAlt: "Development code" + }, phoneTwo: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/abstract-representation-of-web-design-pr-1772527372333-1ad2600f.png?_wi=2", imageAlt: "Design implementation"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/abstract-representation-of-web-design-pr-1772527372333-1ad2600f.png?_wi=2", imageAlt: "Design implementation" + }, }, { id: 3, title: "Branding & Strategy", description: "Strategic branding solutions that establish your unique market position. We create cohesive visual identities that resonate with your target audience.", phoneOne: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/branding-identity-elements-spread-out-in-1772527370942-4bda01ed.png?_wi=2", imageAlt: "Brand guidelines"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/branding-identity-elements-spread-out-in-1772527370942-4bda01ed.png?_wi=2", imageAlt: "Brand guidelines" + }, phoneTwo: { - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/code-editor-on-screen-displaying-clean-o-1772527370169-57931e12.png?_wi=2", imageAlt: "Strategy implementation"}, + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQaMoBX7jFwK0QlMohZLIPqdAi/code-editor-on-screen-displaying-clean-o-1772527370169-57931e12.png?_wi=2", imageAlt: "Strategy implementation" + }, }, ]} showStepNumbers={true} -- 2.49.1