Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-04-15 03:37:12 +00:00
6 changed files with 69 additions and 304 deletions

View File

@@ -3,9 +3,9 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import TeamCardTen from "@/components/sections/team/TeamCardTen";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Users, Award } from "lucide-react";
import TeamCardSix from "@/components/sections/team/TeamCardSix";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Users } from "lucide-react";
export default function AboutPage() {
return (
@@ -37,18 +37,21 @@ export default function AboutPage() {
<p className="text-xl text-muted-foreground">Founded in a small barber shop in 2018, Webild was born from the idea that local business deserves world-class digital craft. We moved from cutting hair to cutting code, bringing the same precision, style, and personal touch to every website we build.</p>
</div>
</div>
<TeamCardTen
<TeamCardSix
title="The Team"
tag="The Craftsmen"
membersAnimation="slide-up"
memberVariant="card"
description="The creative minds behind your next project."
animationType="slide-up"
gridVariant="uniform-all-items-equal"
textboxLayout="default"
useInvertedBackground={false}
members={[
{ id: "1", name: "John Doe", role: "Lead Barber & Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp" },
{ id: "2", name: "Jane Smith", role: "Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp" },
]}
/>
<FooterBase
<FooterMedia
logoText="Webild"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp"
copyrightText="© 2026 | Webild"
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] }

View File

@@ -5,11 +5,9 @@ import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ContactText from "@/components/sections/contact/ContactText";
import Textarea from "@/components/form/Textarea";
import FooterBase from "@/components/sections/footer/FooterBase";
import FooterMedia from "@/components/sections/footer/FooterMedia";
export default function ContactPage() {
const [message, setMessage] = useState("");
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -35,20 +33,13 @@ export default function ContactPage() {
/>
<ContactText
text="Book Your Consultation"
animationType="entrance-slide"
background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false}
/>
<div className="container mx-auto px-4 py-12">
<div className="max-w-xl mx-auto space-y-6">
<Textarea value={message} onChange={setMessage} placeholder="Tell us about your project..." />
<button className="px-6 py-3 bg-primary text-white rounded-full">Send Request</button>
<div className="mt-8 p-6 bg-secondary/10 rounded-xl">
<h3 className="font-bold mb-2">Our Location</h3>
<p>123 Barbershop Lane, Digital City, DC 12345</p>
</div>
</div>
</div>
<FooterBase
<FooterMedia
logoText="Webild"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp"
copyrightText="© 2026 | Webild"
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }

View File

@@ -3,8 +3,8 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
import FooterBase from "@/components/sections/footer/FooterBase";
import ProductCardThree from "@/components/sections/product/ProductCardThree";
import FooterMedia from "@/components/sections/footer/FooterMedia";
export default function GalleryPage() {
return (
@@ -33,49 +33,30 @@ export default function GalleryPage() {
button={{ text: "Get Started", href: "/#contact" }}
/>
<div className="pt-32 pb-20">
<ProductCatalog
layout="page"
<ProductCardThree
title="Barber Portfolio"
description="Showcasing our precision cuts and transformative styles."
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", name: "Classic Fade", price: "Before / After", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp" },
{ id: "2", name: "Modern Textured", price: "Before / After", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp" },
{ id: "3", name: "Precision Beard Trim", price: "Before / After", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp" },
{ id: "4", name: "Buzz Cut Refined", price: "Before / After", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp" },
{ id: "1", name: "Classic Fade", price: "$50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp" },
{ id: "2", name: "Modern Textured", price: "$60", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp" },
{ id: "3", name: "Precision Beard Trim", price: "$40", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp" },
{ id: "4", name: "Buzz Cut Refined", price: "$35", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp" },
]}
/>
</div>
<FooterBase
<FooterMedia
logoText="Webild"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp"
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: "#" },
],
},
{ title: "Company", items: [{ label: "About", href: "/#about" }, { label: "Services", href: "/#services" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -18,7 +18,7 @@ const inter = Inter({
subsets: ["latin"],
});
export const metadata: Metadata = { title: 'Webild Agency | High-Impact Digital Design & Development', description: 'Transform your brand with Webild. We craft high-performance websites and digital experiences designed to scale your business and captivate your audience.', openGraph: { title: 'Webild Agency | High-Impact Digital Design & Development', description: 'Transform your brand with Webild. We craft high-performance websites and digital experiences designed to scale your business and captivate your audience.', type: 'website' } };
export const metadata: Metadata = { title: 'Webild - Professional Digital Agency', description: 'Crafting exceptional digital experiences for modern businesses.', openGraph: { title: 'Webild Agency | High-Impact Digital Design & Development', description: 'Transform your brand with Webild. We craft high-performance websites and digital experiences designed to scale your business and captivate your audience.', type: 'website' } };
export default function RootLayout({
children,

View File

@@ -3,17 +3,9 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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";
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import TeamCardFive from "@/components/sections/team/TeamCardFive";
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users, Star } from "lucide-react";
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
export default function WebAgency2Page() {
return (
@@ -40,209 +32,40 @@ export default function WebAgency2Page() {
]}
button={{ text: "Get Started", href: "#contact" }}
/>
<HeroSplitDoubleCarousel
<HeroBillboardGallery
title="We Build Digital Experiences"
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers."
tag="Award-Winning Agency"
tagIcon={Sparkles}
tagAnimation="slide-up"
description="Transform your brand with cutting-edge web design."
background={{ variant: "canvas-reveal" }}
buttons={[
{ text: "Start Project", href: "#contact" },
{ text: "View Work", href: "#work" },
]}
buttonAnimation="slide-up"
carouselPosition="right"
leftCarouselItems={[
{ 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" },
{ 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" },
]}
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" },
]}
carouselItemClassName="!aspect-[4/5]"
/>
<FeatureBento
title="Our Services"
description="We offer a full suite of digital services to help your brand stand out online."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
buttons={[{ text: "All Services", href: "#services" }]}
buttonAnimation="slide-up"
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"],
},
{
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" },
],
},
{
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" },
],
},
mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-3.webp" }
]}
/>
<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: "#"},
]}
/>
<TestimonialCardSixteen
id="testimonials"
<TestimonialCardSix
title="What Our Clients Say"
description="Real feedback from partners who have trusted us with their digital transformation."
textboxLayout="default"
useInvertedBackground={true}
description="Real feedback from our partners."
animationType="slide-up"
kpiItems={[
{ value: "500+", label: "Projects Completed" },
{ value: "98%", label: "Client Retention" },
{ value: "4.9/5", label: "Average Rating" }
]}
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Maria Santos", role: "CEO", company: "Luxuria Travel", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp"},
id: "1", name: "Maria Santos", handle: "@luxuria", testimonial: "Amazing work!"
},
{
id: "2", name: "James Chen", role: "Founder", company: "TechFlow", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp"},
{
id: "3", name: "Elena Rossi", role: "Director", company: "Umbra", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp"}
id: "2", name: "James Chen", handle: "@techflow", testimonial: "Highly recommended."
}
]}
/>
<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
<FooterMedia
logoText="Webild"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp"
copyrightText="© 2026 | Webild"
columns={[
{
items: [
{ label: "Services", href: "#services" },
{ label: "Work", href: "#work" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Contact", href: "#contact" },
],
},
{
items: [
{ label: "Web Development", href: "#" },
{ label: "SEO", href: "#" },
{ label: "Branding", href: "#" },
{ label: "UI/UX Design", href: "#" },
],
},
{
items: [
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
],
},
{ title: "Services", items: [{ label: "Home", href: "/" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -3,9 +3,9 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
import FooterBase from "@/components/sections/footer/FooterBase";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import ContactText from "@/components/sections/contact/ContactText";
export default function ServicesPage() {
return (
@@ -32,62 +32,29 @@ export default function ServicesPage() {
]}
button={{ text: "Get Started", href: "#contact" }}
/>
<PricingCardTwo
<PricingCardEight
title="Our Digital Services"
description="Transparent pricing for high-impact digital solutions."
description="Transparent pricing for high-impact solutions."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "web-dev", badge: "Standard", price: "$2,500+", subtitle: "Custom Web Development", features: ["Responsive design", "CMS integration", "Fast performance", "SEO foundation", "2-week turnaround"],
buttons: [{ text: "Inquire Now", href: "#contact" }]
},
{
id: "branding", badge: "Popular", price: "$1,500+", subtitle: "Brand Strategy & Identity", features: ["Logo design", "Brand guidelines", "Typography systems", "Social media assets", "1-week turnaround"],
buttons: [{ text: "Inquire Now", href: "#contact" }]
},
{
id: "seo", badge: "Growth", price: "$800/mo", subtitle: "SEO & Analytics", features: ["Keyword research", "On-page optimization", "Monthly reporting", "Backlink strategy", "Continuous monitoring"],
buttons: [{ text: "Inquire Now", href: "#contact" }]
id: "web-dev", badge: "Standard", price: "$2,500", subtitle: "Web", features: ["Responsive", "Fast"], buttons: [{ text: "Get" }]
}
]}
/>
<ContactCTA
tag="Contact Us"
title="Ready to start your project?"
description="Get in touch for a custom quote based on your specific requirements."
buttons={[{ text: "Let's Talk", href: "#contact" }]}
<ContactText
text="Let's talk"
background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false}
/>
<FooterBase
<FooterMedia
logoText="Webild"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp"
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: "/services" },
{ label: "SEO", href: "/services" },
{ label: "Branding", href: "/services" },
{ label: "UI/UX Design", href: "/services" },
],
},
{
title: "Connect", items: [
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "Dribbble", href: "#" },
],
},
{ title: "Company", items: [{ label: "Home", href: "/" }] }
]}
/>
</ReactLenis>