Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c7d955751 | |||
| 667f2b71b6 | |||
| 500545a312 | |||
| 5e3607b8e7 | |||
| de95453d83 | |||
| 538d2c61c8 | |||
| c655820a03 | |||
| 7610b1696a | |||
| 5a7dfa0292 |
79
src/app/booking/page.tsx
Normal file
79
src/app/booking/page.tsx
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import ContactForm from '@/components/form/ContactForm';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
|
export default function BookingPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="metallic"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Webild"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Work", id: "work" },
|
||||||
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "About", id: "about" },
|
||||||
|
{ name: "Gallery", id: "/gallery" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
{ name: "Book Now", id: "/booking" }
|
||||||
|
]}
|
||||||
|
button={{ text: "Get Started", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
<ContactForm
|
||||||
|
title="Book Your Appointment"
|
||||||
|
description="Request an appointment with our expert stylists and aestheticians. Please provide your preferred services and time, and we'll confirm shortly."
|
||||||
|
tag="Appointment Request"
|
||||||
|
inputPlaceholder="Enter your email or phone number"
|
||||||
|
buttonText="Request Appointment"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
<FooterBase
|
||||||
|
logoText="Webild"
|
||||||
|
copyrightText="© 2026 | Webuild"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "About", href: "#about" },
|
||||||
|
{ label: "Services", href: "#services" },
|
||||||
|
{ label: "Work", href: "#work" },
|
||||||
|
{ 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: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{ label: "Twitter", href: "#" },
|
||||||
|
{ label: "LinkedIn", href: "#" },
|
||||||
|
{ label: "Instagram", href: "#" },
|
||||||
|
{ label: "Dribbble", href: "#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
85
src/app/contact/page.tsx
Normal file
85
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import ContactForm from '@/components/form/ContactForm';
|
||||||
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
|
export default function ContactUsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="metallic"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Webild"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Work", id: "work" },
|
||||||
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "About", id: "about" },
|
||||||
|
{ name: "Gallery", id: "/gallery" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
{ name: "Book Now", id: "/booking" }
|
||||||
|
]}
|
||||||
|
button={{ text: "Get Started", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
<ContactForm
|
||||||
|
title="Get in Touch with Us"
|
||||||
|
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" }]}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
<FooterBase
|
||||||
|
logoText="Webild"
|
||||||
|
copyrightText="© 2026 | Webuild"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "About", href: "#about" },
|
||||||
|
{ label: "Services", href: "#services" },
|
||||||
|
{ label: "Work", href: "#work" },
|
||||||
|
{ 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: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{ label: "Twitter", href: "#" },
|
||||||
|
{ label: "LinkedIn", href: "#" },
|
||||||
|
{ label: "Instagram", href: "#" },
|
||||||
|
{ label: "Dribbble", href: "#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
94
src/app/gallery/page.tsx
Normal file
94
src/app/gallery/page.tsx
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
import { ArrowUpRight } from "lucide-react";
|
||||||
|
|
||||||
|
const salonImages = [
|
||||||
|
{
|
||||||
|
title: "Chic Haircut & Styling", description: "Modern and elegant hairstyles for every occasion.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/placeholders/gallery-salon-1.jpg", imageAlt: "Woman getting a chic haircut at a salon"},
|
||||||
|
{
|
||||||
|
title: "Relaxing Spa Experience", description: "Indulge in our luxurious spa treatments for ultimate relaxation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/placeholders/gallery-salon-2.jpg", imageAlt: "Person receiving a facial at a spa"},
|
||||||
|
{
|
||||||
|
title: "Vibrant Nail Art", description: "Express your style with our creative and vibrant nail art designs.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/placeholders/gallery-salon-3.jpg", imageAlt: "Close-up of hands with vibrant nail polish"},
|
||||||
|
{
|
||||||
|
title: "Professional Makeup", description: "Flawless makeup application for weddings, events, and photoshoots.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/placeholders/gallery-salon-4.jpg", imageAlt: "Woman getting professional makeup applied"},
|
||||||
|
{
|
||||||
|
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"}
|
||||||
|
];
|
||||||
|
|
||||||
|
export default function GalleryPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="metallic"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Webild"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Work", id: "work" },
|
||||||
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "About", id: "about" },
|
||||||
|
{ name: "Gallery", id: "/gallery" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
{ name: "Book Now", id: "/booking" }
|
||||||
|
]}
|
||||||
|
button={{ text: "Get Started", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
<FeatureCardSix
|
||||||
|
title="Our Beautiful Creations"
|
||||||
|
description="Explore a curated selection of our finest work, showcasing the artistry and passion we bring to every client."
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={salonImages.map((image) => ({ ...image, buttonIcon: ArrowUpRight }))}
|
||||||
|
/>
|
||||||
|
<FooterBase
|
||||||
|
logoText="Webild"
|
||||||
|
copyrightText="© 2026 | Webuild"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "About", href: "#about" },
|
||||||
|
{ label: "Services", href: "#services" },
|
||||||
|
{ label: "Work", href: "#work" },
|
||||||
|
{ 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: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Connect", items: [
|
||||||
|
{ label: "Twitter", href: "#" },
|
||||||
|
{ label: "LinkedIn", href: "#" },
|
||||||
|
{ label: "Instagram", href: "#" },
|
||||||
|
{ label: "Dribbble", href: "#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
559
src/app/page.tsx
559
src/app/page.tsx
@@ -11,7 +11,7 @@ import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
|||||||
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
||||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||||
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
|
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
|
||||||
|
|
||||||
@@ -36,313 +36,266 @@ export default function WebAgency2Page() {
|
|||||||
{ name: "Work", id: "work" },
|
{ name: "Work", id: "work" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Get Started", href: "#contact" }}
|
button={{ text: "Get Started", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
<HeroSplitDoubleCarousel
|
<div id="hero" data-section="hero">
|
||||||
title="We Build Digital Experiences"
|
<HeroSplitDoubleCarousel
|
||||||
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
|
title="We Build Digital Experiences"
|
||||||
tag="Award-Winning Agency"
|
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
|
||||||
tagIcon={Sparkles}
|
tag="Award-Winning Agency"
|
||||||
tagAnimation="slide-up"
|
tagIcon={Sparkles}
|
||||||
background={{ variant: "canvas-reveal" }}
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
background={{ variant: "canvas-reveal" }}
|
||||||
{ text: "Start Project", href: "#contact" },
|
buttons={[
|
||||||
{ text: "View Work", href: "#work" },
|
{ text: "Start Project", href: "#contact" },
|
||||||
]}
|
{ text: "View Work", href: "#work" }
|
||||||
buttonAnimation="slide-up"
|
]}
|
||||||
carouselPosition="right"
|
buttonAnimation="slide-up"
|
||||||
leftCarouselItems={[
|
carouselPosition="right"
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "UI UX Design - Daily Life app" },
|
leftCarouselItems={[
|
||||||
{ 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-1.webp?_wi=1", imageAlt: "UI UX Design - Daily Life app" },
|
||||||
{ 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-4.webp?_wi=1", imageAlt: "UI UX Design - SaaS platform" },
|
||||||
{ 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-6.webp", imageAlt: "UI UX Design - Luminé skincare" },
|
||||||
{ 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-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" }
|
||||||
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" },
|
rightCarouselItems={[
|
||||||
{ 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-2.webp?_wi=1", imageAlt: "UI UX Design - Luxuria travel" },
|
||||||
{ 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-5.webp", imageAlt: "UI UX Design - Dental practice" },
|
||||||
{ 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-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" }
|
||||||
carouselItemClassName="!aspect-[4/5]"
|
]}
|
||||||
/>
|
carouselItemClassName="!aspect-[4/5]"
|
||||||
<FeatureBento
|
/>
|
||||||
title="Our Services"
|
</div>
|
||||||
description="We offer a full suite of digital services to help your brand stand out online."
|
<div id="services" data-section="services">
|
||||||
textboxLayout="default"
|
<FeatureBento
|
||||||
useInvertedBackground={false}
|
title="Our Services"
|
||||||
animationType="slide-up"
|
description="We offer a full suite of digital services to help your brand stand out online."
|
||||||
buttons={[{ text: "All Services", href: "#services" }]}
|
textboxLayout="default"
|
||||||
buttonAnimation="slide-up"
|
useInvertedBackground={false}
|
||||||
features={[
|
animationType="slide-up"
|
||||||
{
|
buttons={[{ text: "All Services", href: "#services" }]}
|
||||||
title: "SEO",
|
buttonAnimation="slide-up"
|
||||||
description: "We optimize your website to rank higher on search engines and drive organic traffic.",
|
features={[
|
||||||
bentoComponent: "marquee",
|
{
|
||||||
centerIcon: Search,
|
title: "SEO", description: "We optimize your website to rank higher on search engines and drive organic traffic.", bentoComponent: "marquee", centerIcon: Search,
|
||||||
variant: "text",
|
variant: "text", texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"]
|
||||||
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: [
|
||||||
title: "Web Development",
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web project - AgentFlow AI platform" },
|
||||||
description: "Custom-built websites that are fast, responsive, and designed to convert.",
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web project - Architecture studio" },
|
||||||
bentoComponent: "media-stack",
|
{ 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?_wi=2", imageAlt: "Brand project 1" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=2", imageAlt: "Brand project 2" },
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp?_wi=2", imageAlt: "Brand project 3" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="work" data-section="work">
|
||||||
|
<FeatureCardTwentySix
|
||||||
|
title="Our Work"
|
||||||
|
description="A selection of projects we've crafted for clients across industries."
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
buttons={[{ text: "View All Work", href: "#work" }]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
|
cardClassName="!h-auto aspect-video"
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
title: "Umbra Skincare", description: "Luxury fragrance e-commerce", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Umbra Skincare website", buttonIcon: ArrowUpRight,
|
||||||
|
buttonHref: "#"},
|
||||||
|
{
|
||||||
|
title: "Luxuria Travel", description: "Bespoke luxury travel experiences", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Luxuria Travel website", buttonIcon: ArrowUpRight,
|
||||||
|
buttonHref: "#"},
|
||||||
|
{
|
||||||
|
title: "Dental Care", description: "Premier dental practice", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Luxury Dental Care website", buttonIcon: ArrowUpRight,
|
||||||
|
buttonHref: "#"},
|
||||||
|
{
|
||||||
|
title: "Summit Roofing", description: "Professional roofing services", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Summit Roofing website", buttonIcon: ArrowUpRight,
|
||||||
|
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: "#"}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div data-section="promise">
|
||||||
|
<FeatureBento
|
||||||
|
title="Our Promise"
|
||||||
|
description="We deliver results that speak for themselves."
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
animationType="slide-up"
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
title: "All Devices Optimization", description: "Pixel-perfect websites that look stunning on every screen size and device.", bentoComponent: "phone", statusIcon: Lock,
|
||||||
|
alertIcon: Monitor,
|
||||||
|
alertTitle: "Responsive check", alertMessage: "All breakpoints passed", apps: [
|
||||||
|
{ name: "Phone", icon: Phone },
|
||||||
|
{ name: "SMS", icon: MessageCircle },
|
||||||
|
{ name: "Books", icon: BookOpen },
|
||||||
|
{ name: "TV", icon: Tv },
|
||||||
|
{ name: "Camera", icon: Camera },
|
||||||
|
{ name: "Music", icon: Music },
|
||||||
|
{ name: "Settings", icon: Settings },
|
||||||
|
{ name: "Chat", icon: MessageCircle }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
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" }
|
||||||
|
],
|
||||||
|
completedLabel: "Live"},
|
||||||
|
{
|
||||||
|
title: "Seamless Integrations", description: "Connect with the tools you already use — CRMs, analytics, payments, and more.", bentoComponent: "orbiting-icons", centerIcon: Puzzle,
|
||||||
|
items: [
|
||||||
|
{ icon: Shield },
|
||||||
|
{ icon: Monitor },
|
||||||
|
{ icon: Zap },
|
||||||
|
{ icon: TrendingUp }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Growth Trends", description: "Data-driven insights to optimize your search presence and drive traffic.", bentoComponent: "line-chart"}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div data-section="testimonials">
|
||||||
|
<TestimonialCardFifteen
|
||||||
|
testimonial="Webild completely transformed our online presence. The team delivered a stunning website that exceeded our expectations and doubled our conversion rate."
|
||||||
|
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" }
|
||||||
|
]}
|
||||||
|
ratingAnimation="slide-up"
|
||||||
|
avatarsAnimation="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="about" data-section="about">
|
||||||
|
<MetricCardOne
|
||||||
|
title="Trusted by Industry Leaders"
|
||||||
|
description="Years of experience building digital products that drive real results."
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
animationType="slide-up"
|
||||||
|
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 }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div data-section="why-choose-us">
|
||||||
|
<FeatureCardSixteen
|
||||||
|
title="Why Choose Webild"
|
||||||
|
description="See the difference a professional web agency makes."
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
animationType="slide-up"
|
||||||
|
negativeCard={{
|
||||||
items: [
|
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" },
|
"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"]
|
||||||
{ 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" },
|
positiveCard={{
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Branding",
|
|
||||||
description: "Build a memorable brand identity that resonates with your audience.",
|
|
||||||
bentoComponent: "media-stack",
|
|
||||||
items: [
|
items: [
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Brand project 1" },
|
"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"]
|
||||||
{ 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" },
|
/>
|
||||||
],
|
</div>
|
||||||
},
|
<div data-section="team">
|
||||||
]}
|
<TeamCardFive
|
||||||
/>
|
title="Meet the Team"
|
||||||
<FeatureCardTwentySix
|
description="The creative minds behind your next project."
|
||||||
title="Our Work"
|
textboxLayout="default"
|
||||||
description="A selection of projects we've crafted for clients across industries."
|
useInvertedBackground={false}
|
||||||
textboxLayout="default"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
mediaClassName="object-[65%_center]"
|
||||||
buttons={[{ text: "View All Work", href: "#work" }]}
|
team={[
|
||||||
buttonAnimation="slide-up"
|
{ 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" },
|
||||||
cardClassName="!h-auto aspect-video"
|
{ 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" },
|
||||||
features={[
|
{ 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" }
|
||||||
{
|
]}
|
||||||
title: "Umbra Skincare",
|
/>
|
||||||
description: "Luxury fragrance e-commerce",
|
</div>
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp",
|
<div data-section="faq">
|
||||||
imageAlt: "Umbra Skincare website",
|
<FaqBase
|
||||||
buttonIcon: ArrowUpRight,
|
title="Frequently Asked Questions"
|
||||||
buttonHref: "#",
|
description="Everything you need to know about working with us."
|
||||||
},
|
textboxLayout="default"
|
||||||
{
|
useInvertedBackground={false}
|
||||||
title: "Luxuria Travel",
|
faqsAnimation="slide-up"
|
||||||
description: "Bespoke luxury travel experiences",
|
faqs={[
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp",
|
{ id: "1", title: "How long does a typical project take?", content: "Most projects are completed within 2-4 weeks depending on scope and complexity. We'll provide a detailed timeline during our initial consultation." },
|
||||||
imageAlt: "Luxuria Travel website",
|
{ 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." },
|
||||||
buttonIcon: ArrowUpRight,
|
{ 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." },
|
||||||
buttonHref: "#",
|
{ 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." }
|
||||||
{
|
]}
|
||||||
title: "Dental Care",
|
/>
|
||||||
description: "Premier dental practice",
|
</div>
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp",
|
<div id="contact" data-section="contact">
|
||||||
imageAlt: "Luxury Dental Care website",
|
<ContactCTA
|
||||||
buttonIcon: ArrowUpRight,
|
tag="Get in Touch"
|
||||||
buttonHref: "#",
|
title="Ready to Transform Your Digital Presence?"
|
||||||
},
|
description="Let's build something extraordinary together. Get in touch and let's discuss your next project."
|
||||||
{
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
title: "Summit Roofing",
|
buttons={[
|
||||||
description: "Professional roofing services",
|
{ text: "Start Your Project", href: "#contact" },
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp",
|
{ text: "View Our Work", href: "#work" }
|
||||||
imageAlt: "Summit Roofing website",
|
]}
|
||||||
buttonIcon: ArrowUpRight,
|
buttonAnimation="slide-up"
|
||||||
buttonHref: "#",
|
useInvertedBackground={false}
|
||||||
},
|
/>
|
||||||
{
|
</div>
|
||||||
title: "Dubai Real Estate",
|
<div id="footer" data-section="footer">
|
||||||
description: "Luxury property listings",
|
<FooterLogoEmphasis
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp",
|
logoText="Webild"
|
||||||
imageAlt: "Dubai Real Estate website",
|
columns={[
|
||||||
buttonIcon: ArrowUpRight,
|
{
|
||||||
buttonHref: "#",
|
items: [
|
||||||
},
|
{ label: "About", href: "#about" },
|
||||||
]}
|
{ label: "Services", href: "#services" },
|
||||||
/>
|
{ label: "Work", href: "#work" },
|
||||||
<FeatureBento
|
{ label: "Contact", href: "#contact" }
|
||||||
title="Our Promise"
|
]
|
||||||
description="We deliver results that speak for themselves."
|
},
|
||||||
textboxLayout="default"
|
{
|
||||||
useInvertedBackground={false}
|
items: [
|
||||||
animationType="slide-up"
|
{ label: "Web Development", href: "#" },
|
||||||
features={[
|
{ label: "SEO", href: "#" },
|
||||||
{
|
{ label: "Branding", href: "#" },
|
||||||
title: "All Devices Optimization",
|
{ label: "UI/UX Design", href: "#" }
|
||||||
description: "Pixel-perfect websites that look stunning on every screen size and device.",
|
]
|
||||||
bentoComponent: "phone",
|
},
|
||||||
statusIcon: Lock,
|
{
|
||||||
alertIcon: Monitor,
|
items: [
|
||||||
alertTitle: "Responsive check",
|
{ label: "Twitter", href: "#" },
|
||||||
alertMessage: "All breakpoints passed",
|
{ label: "LinkedIn", href: "#" },
|
||||||
apps: [
|
{ label: "Instagram", href: "#" },
|
||||||
{ name: "Phone", icon: Phone },
|
{ label: "Dribbble", href: "#" }
|
||||||
{ name: "SMS", icon: MessageCircle },
|
]
|
||||||
{ name: "Books", icon: BookOpen },
|
}
|
||||||
{ name: "TV", icon: Tv },
|
]}
|
||||||
{ name: "Camera", icon: Camera },
|
/>
|
||||||
{ name: "Music", icon: Music },
|
</div>
|
||||||
{ name: "Settings", icon: Settings },
|
|
||||||
{ name: "Chat", icon: MessageCircle },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
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" },
|
|
||||||
],
|
|
||||||
completedLabel: "Live",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Seamless Integrations",
|
|
||||||
description: "Connect with the tools you already use — CRMs, analytics, payments, and more.",
|
|
||||||
bentoComponent: "orbiting-icons",
|
|
||||||
centerIcon: Puzzle,
|
|
||||||
items: [
|
|
||||||
{ icon: Shield },
|
|
||||||
{ icon: Monitor },
|
|
||||||
{ icon: Zap },
|
|
||||||
{ icon: TrendingUp },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Growth Trends",
|
|
||||||
description: "Data-driven insights to optimize your search presence and drive traffic.",
|
|
||||||
bentoComponent: "line-chart",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
<TestimonialCardFifteen
|
|
||||||
testimonial="Webild completely transformed our online presence. The team delivered a stunning website that exceeded our expectations and doubled our conversion rate."
|
|
||||||
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" },
|
|
||||||
]}
|
|
||||||
ratingAnimation="slide-up"
|
|
||||||
avatarsAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
<MetricCardOne
|
|
||||||
title="Trusted by Industry Leaders"
|
|
||||||
description="Years of experience building digital products that drive real results."
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
gridVariant="uniform-all-items-equal"
|
|
||||||
animationType="slide-up"
|
|
||||||
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 },
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
<FeatureCardSixteen
|
|
||||||
title="Why Choose Webild"
|
|
||||||
description="See the difference a professional web agency makes."
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
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",
|
|
||||||
],
|
|
||||||
}}
|
|
||||||
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",
|
|
||||||
],
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<TeamCardFive
|
|
||||||
title="Meet the Team"
|
|
||||||
description="The creative minds behind your next project."
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
animationType="slide-up"
|
|
||||||
mediaClassName="object-[65%_center]"
|
|
||||||
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" },
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
<FaqBase
|
|
||||||
title="Frequently Asked Questions"
|
|
||||||
description="Everything you need to know about working with us."
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
faqs={[
|
|
||||||
{ id: "1", title: "How long does a typical project take?", content: "Most projects are completed within 2-4 weeks depending on scope and complexity. We'll provide a detailed timeline during our initial consultation." },
|
|
||||||
{ 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." },
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
<ContactCTA
|
|
||||||
tag="Get in Touch"
|
|
||||||
title="Ready to Transform Your Digital Presence?"
|
|
||||||
description="Let's build something extraordinary together. Get in touch and let's discuss your next project."
|
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
|
||||||
buttons={[
|
|
||||||
{ text: "Start Your Project", href: "#contact" },
|
|
||||||
{ text: "View Our Work", href: "#work" },
|
|
||||||
]}
|
|
||||||
buttonAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
<FooterBase
|
|
||||||
logoText="Webild"
|
|
||||||
copyrightText="© 2026 | Webild"
|
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
title: "Company",
|
|
||||||
items: [
|
|
||||||
{ label: "About", href: "#about" },
|
|
||||||
{ label: "Services", href: "#services" },
|
|
||||||
{ label: "Work", href: "#work" },
|
|
||||||
{ label: "Contact", href: "#contact" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Services",
|
|
||||||
items: [
|
|
||||||
{ label: "Web Development", href: "#" },
|
|
||||||
{ label: "SEO", href: "#" },
|
|
||||||
{ label: "Branding", href: "#" },
|
|
||||||
{ label: "UI/UX Design", href: "#" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Connect",
|
|
||||||
items: [
|
|
||||||
{ label: "Twitter", href: "#" },
|
|
||||||
{ label: "LinkedIn", href: "#" },
|
|
||||||
{ label: "Instagram", href: "#" },
|
|
||||||
{ label: "Dribbble", href: "#" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user