From de95453d83dd41ce62ae8d2aea95c2232c00d0fc Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 08:00:51 +0000 Subject: [PATCH 1/4] Update src/app/booking/page.tsx --- src/app/booking/page.tsx | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index 81bb215..9c3d262 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -27,9 +27,9 @@ export default function BookingPage() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Gallery", href: "/gallery" }, - { name: "Contact", href: "/contact" }, - { name: "Book Now", href: "/booking" } + { name: "Gallery", id: "/gallery" }, + { name: "Contact", id: "/contact" }, + { name: "Book Now", id: "/booking" } ]} button={{ text: "Get Started", href: "/contact" }} /> @@ -39,6 +39,7 @@ export default function BookingPage() { tag="Appointment Request" inputPlaceholder="Enter your email or phone number" buttonText="Request Appointment" + useInvertedBackground={false} /> From 5e3607b8e7fbed179959e4e4e7cfb3d54cc9b79a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 08:00:51 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index ad543e6..8794077 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -28,9 +28,9 @@ export default function ContactUsPage() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Gallery", href: "/gallery" }, - { name: "Contact", href: "/contact" }, - { name: "Book Now", href: "/booking" } + { name: "Gallery", id: "/gallery" }, + { name: "Contact", id: "/contact" }, + { name: "Book Now", id: "/booking" } ]} button={{ text: "Get Started", href: "/contact" }} /> @@ -39,11 +39,12 @@ export default function ContactUsPage() { description="Have a question or want to book an appointment? Fill out the form below and we'll get back to you shortly." tag="Contact Us" buttonText="Send Message" + useInvertedBackground={false} /> From 500545a3123e9b66bf01ea40eda01461d333de36 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 08:00:52 +0000 Subject: [PATCH 3/4] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index afd7b28..ab64315 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -19,7 +19,7 @@ const salonImages = [ { title: "Barber Services", description: "Precision cuts and grooming for a refined look.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/placeholders/gallery-salon-5.jpg", imageAlt: "Man getting a beard trim at a barber shop"}, { - title: "Hair Coloring & Highlights", description: "Transform your look with our expert hair coloring services.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/placeholders/gallery-salon-6.jpg", imageAlt: "Hairdresser applying highlights to client's hair"}, + title: "Hair Coloring & Highlights", description: "Transform your look with our expert hair coloring services.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/placeholders/gallery-salon-6.jpg", imageAlt: "Hairdresser applying highlights to client's hair"} ]; export default function GalleryPage() { @@ -43,9 +43,9 @@ export default function GalleryPage() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Gallery", href: "/gallery" }, - { name: "Contact", href: "/contact" }, - { name: "Book Now", href: "/booking" } + { name: "Gallery", id: "/gallery" }, + { name: "Contact", id: "/contact" }, + { name: "Book Now", id: "/booking" } ]} button={{ text: "Get Started", href: "/contact" }} /> @@ -54,7 +54,6 @@ export default function GalleryPage() { description="Explore a curated selection of our finest work, showcasing the artistry and passion we bring to every client." textboxLayout="default" useInvertedBackground={false} - animationType="slide-up" features={salonImages.map((image) => ({ ...image, buttonIcon: ArrowUpRight }))} /> From 667f2b71b6c83914c884c23ea50822f5a21d0217 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 08:00:52 +0000 Subject: [PATCH 4/4] Update src/app/page.tsx --- src/app/page.tsx | 66 ++++++++++++++++++++++++------------------------ 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2d46acc..2c6f4f9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarFloatingOverlay/NavbarLayoutFloatingOverlay"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; @@ -36,7 +36,7 @@ export default function WebAgency2Page() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "contact" } ]} button={{ text: "Get Started", href: "#contact" }} /> @@ -50,7 +50,7 @@ export default function WebAgency2Page() { background={{ variant: "canvas-reveal" }} buttons={[ { text: "Start Project", href: "#contact" }, - { text: "View Work", href: "#work" }, + { text: "View Work", href: "#work" } ]} buttonAnimation="slide-up" carouselPosition="right" @@ -59,13 +59,13 @@ export default function WebAgency2Page() { { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "UI UX Design - SaaS platform" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "UI UX Design - Luminé skincare" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-7.webp", imageAlt: "UI UX Design - Online courses" }, - { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "UI UX Design - Business coach" }, + { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "UI UX Design - Business coach" } ]} rightCarouselItems={[ { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "UI UX Design - Luxuria travel" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-5.webp", imageAlt: "UI UX Design - Dental practice" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp", imageAlt: "UI UX Design - AI product builder" }, - { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-8.webp", imageAlt: "UI UX Design - AI automation" }, + { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-8.webp", imageAlt: "UI UX Design - AI automation" } ]} carouselItemClassName="!aspect-[4/5]" /> @@ -82,22 +82,22 @@ export default function WebAgency2Page() { features={[ { title: "SEO", description: "We optimize your website to rank higher on search engines and drive organic traffic.", bentoComponent: "marquee", centerIcon: Search, - variant: "text", texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"], + variant: "text", texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"] }, { title: "Web Development", description: "Custom-built websites that are fast, responsive, and designed to convert.", bentoComponent: "media-stack", items: [ { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web project - AgentFlow AI platform" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web project - Architecture studio" }, - { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Web project - Summit Roofing" }, - ], + { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp", imageAlt: "Web project - Summit Roofing" } + ] }, { title: "Branding", description: "Build a memorable brand identity that resonates with your audience.", bentoComponent: "media-stack", items: [ { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Brand project 1" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Brand project 2" }, - { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" }, - ], - }, + { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" } + ] + } ]} /> @@ -125,7 +125,7 @@ export default function WebAgency2Page() { buttonHref: "#"}, { title: "Dubai Real Estate", description: "Luxury property listings", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Dubai Real Estate website", buttonIcon: ArrowUpRight, - buttonHref: "#"}, + buttonHref: "#"} ]} /> @@ -148,17 +148,17 @@ export default function WebAgency2Page() { { name: "Camera", icon: Camera }, { name: "Music", icon: Music }, { name: "Settings", icon: Settings }, - { name: "Chat", icon: MessageCircle }, - ], + { name: "Chat", icon: MessageCircle } + ] }, { - title: "Secure Hosting", description: "Enterprise-grade security and 99.9% uptime for your website.", bentoComponent: "reveal-icon", icon: Shield, + title: "Secure Hosting", description: "Enterprise-grade security and 99.9% uptime for your website.", bentoComponent: "reveal-icon", icon: Shield }, { title: "Fast Turnaround", description: "From concept to launch in record time without sacrificing quality.", bentoComponent: "timeline", heading: "Project Launch", subheading: "Week 1", items: [ { label: "Discovery & wireframes", detail: "Day 1-3" }, { label: "Design & development", detail: "Day 4-10" }, - { label: "Testing & deployment", detail: "Day 11-14" }, + { label: "Testing & deployment", detail: "Day 11-14" } ], completedLabel: "Live"}, { @@ -167,11 +167,11 @@ export default function WebAgency2Page() { { icon: Shield }, { icon: Monitor }, { icon: Zap }, - { icon: TrendingUp }, - ], + { icon: TrendingUp } + ] }, { - title: "Growth Trends", description: "Data-driven insights to optimize your search presence and drive traffic.", bentoComponent: "line-chart"}, + title: "Growth Trends", description: "Data-driven insights to optimize your search presence and drive traffic.", bentoComponent: "line-chart"} ]} /> @@ -181,7 +181,7 @@ export default function WebAgency2Page() { rating={5} author="— Maria Santos, CEO at Luxuria Travel" avatars={[ - { src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Client" }, + { src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Client" } ]} ratingAnimation="slide-up" avatarsAnimation="slide-up" @@ -199,7 +199,7 @@ export default function WebAgency2Page() { metrics={[ { id: "projects", value: "100+", title: "Projects", description: "Successfully delivered across all industries", icon: Award }, { id: "satisfaction", value: "99%", title: "Satisfaction", description: "Client satisfaction rate and counting", icon: Users }, - { id: "years", value: "8+", title: "Years", description: "Of crafting exceptional digital experiences", icon: TrendingUp }, + { id: "years", value: "8+", title: "Years", description: "Of crafting exceptional digital experiences", icon: TrendingUp } ]} /> @@ -212,11 +212,11 @@ export default function WebAgency2Page() { animationType="slide-up" negativeCard={{ items: [ - "Generic templates with no personality", "Slow load times and poor performance", "No SEO strategy or search visibility", "Outdated design that hurts credibility", "No ongoing support after launch"], + "Generic templates with no personality", "Slow load times and poor performance", "No SEO strategy or search visibility", "Outdated design that hurts credibility", "No ongoing support after launch"] }} positiveCard={{ items: [ - "Custom designs tailored to your brand", "Lightning-fast performance on all devices", "Built-in SEO to drive organic traffic", "Modern design that builds trust", "Dedicated support and maintenance"], + "Custom designs tailored to your brand", "Lightning-fast performance on all devices", "Built-in SEO to drive organic traffic", "Modern design that builds trust", "Dedicated support and maintenance"] }} /> @@ -231,7 +231,7 @@ export default function WebAgency2Page() { team={[ { id: "1", name: "Sarah Miller", role: "Lead Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Sarah Miller" }, { id: "2", name: "Valentina Reyes", role: "Creative Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Valentina Reyes" }, - { id: "3", name: "Carlos Mendoza", role: "UX Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" }, + { id: "3", name: "Carlos Mendoza", role: "UX Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" } ]} /> @@ -247,7 +247,7 @@ export default function WebAgency2Page() { { id: "2", title: "What is your pricing structure?", content: "We offer project-based pricing tailored to your needs. Every project includes design, development, SEO optimization, and post-launch support." }, { id: "3", title: "Do you offer ongoing maintenance?", content: "Yes! We provide ongoing support and maintenance packages to keep your website updated, secure, and performing at its best." }, { id: "4", title: "Can you redesign my existing website?", content: "Absolutely. We specialize in website redesigns that modernize your brand while preserving your existing content and SEO rankings." }, - { id: "5", title: "What technologies do you use?", content: "We build with modern technologies including Next.js, React, and Tailwind CSS to ensure fast, scalable, and maintainable websites." }, + { id: "5", title: "What technologies do you use?", content: "We build with modern technologies including Next.js, React, and Tailwind CSS to ensure fast, scalable, and maintainable websites." } ]} /> @@ -259,7 +259,7 @@ export default function WebAgency2Page() { background={{ variant: "rotated-rays-animated" }} buttons={[ { text: "Start Your Project", href: "#contact" }, - { text: "View Our Work", href: "#work" }, + { text: "View Our Work", href: "#work" } ]} buttonAnimation="slide-up" useInvertedBackground={false} @@ -274,25 +274,25 @@ export default function WebAgency2Page() { { label: "About", href: "#about" }, { label: "Services", href: "#services" }, { label: "Work", href: "#work" }, - { label: "Contact", href: "#contact" }, - ], + { label: "Contact", href: "#contact" } + ] }, { items: [ { label: "Web Development", href: "#" }, { label: "SEO", href: "#" }, { label: "Branding", href: "#" }, - { label: "UI/UX Design", href: "#" }, - ], + { label: "UI/UX Design", href: "#" } + ] }, { items: [ { label: "Twitter", href: "#" }, { label: "LinkedIn", href: "#" }, { label: "Instagram", href: "#" }, - { label: "Dribbble", href: "#" }, - ], - }, + { label: "Dribbble", href: "#" } + ] + } ]} />