Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-05-26 08:00:55 +00:00
4 changed files with 64 additions and 63 deletions

View File

@@ -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}
/>
<FooterBase
logoText="Webild"
@@ -52,24 +53,24 @@ export default function BookingPage() {
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
{ label: "Book Now", href: "/booking" }
],
]
},
{
title: "Services", items: [
{ label: "Web Development", href: "#" },
{ label: "SEO", href: "#" },
{ label: "Branding", href: "#" },
{ label: "UI/UX Design", href: "#" },
],
{ label: "UI/UX Design", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "Dribbble", href: "#" },
],
},
{ label: "Dribbble", href: "#" }
]
}
]}
/>
</ReactLenis>

View File

@@ -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}
/>
<ContactText
text="Find Us Here\n\n123 Main Street, Suite 100\nBeauty City, BC 12345\n\n(555) 123-4567\ninfo@beautysalon.com"
background={{ variant: "radial-gradient" }}
buttons={[{ text: "View on Map", href: "https://www.google.com/maps/search/?api=1&query=123+Main+Street,+Beauty+City", target: "_blank" }]}
buttons={[{ text: "View on Map", href: "https://www.google.com/maps/search/?api=1&query=123+Main+Street,+Beauty+City" }]}
useInvertedBackground={false}
/>
<FooterBase
@@ -58,24 +59,24 @@ export default function ContactUsPage() {
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
{ label: "Book Now", href: "/booking" }
],
]
},
{
title: "Services", items: [
{ label: "Web Development", href: "#" },
{ label: "SEO", href: "#" },
{ label: "Branding", href: "#" },
{ label: "UI/UX Design", href: "#" },
],
{ label: "UI/UX Design", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "Dribbble", href: "#" },
],
},
{ label: "Dribbble", href: "#" }
]
}
]}
/>
</ReactLenis>

View File

@@ -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 }))}
/>
<FooterBase
@@ -69,24 +68,24 @@ export default function GalleryPage() {
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
{ label: "Book Now", href: "/booking" }
],
]
},
{
title: "Services", items: [
{ label: "Web Development", href: "#" },
{ label: "SEO", href: "#" },
{ label: "Branding", href: "#" },
{ label: "UI/UX Design", href: "#" },
],
{ label: "UI/UX Design", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "Dribbble", href: "#" },
],
},
{ label: "Dribbble", href: "#" }
]
}
]}
/>
</ReactLenis>

View File

@@ -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" }
]
}
]}
/>
</div>
@@ -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: "#"}
]}
/>
</div>
@@ -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"}
]}
/>
</div>
@@ -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 }
]}
/>
</div>
@@ -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"]
}}
/>
</div>
@@ -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" }
]}
/>
</div>
@@ -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." }
]}
/>
</div>
@@ -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: "#" }
]
}
]}
/>
</div>