17 Commits

Author SHA1 Message Date
c1a6b433b2 Merge version_3 into main
Merge version_3 into main
2026-06-12 21:26:01 +00:00
76ff1e1ebd Update src/app/about/page.tsx 2026-06-12 21:25:58 +00:00
715964349b Merge version_3 into main
Merge version_3 into main
2026-06-12 21:25:12 +00:00
9e1958bee9 Update src/app/team/page.tsx 2026-06-12 21:25:09 +00:00
3c514ac0f5 Update src/app/services/page.tsx 2026-06-12 21:25:09 +00:00
4ec31db4ce Update src/app/portfolio/page.tsx 2026-06-12 21:25:08 +00:00
c2c2c5e4ad Update src/app/contact/page.tsx 2026-06-12 21:25:08 +00:00
84a35017ae Update src/app/about/page.tsx 2026-06-12 21:25:08 +00:00
6e0b9b7477 Merge version_3 into main
Merge version_3 into main
2026-06-12 21:24:15 +00:00
f4806798a8 Add src/app/team/page.tsx 2026-06-12 21:24:12 +00:00
5d4bcde197 Add src/app/services/page.tsx 2026-06-12 21:24:12 +00:00
4abdd7d106 Add src/app/portfolio/page.tsx 2026-06-12 21:24:11 +00:00
510ca80b6c Update src/app/page.tsx 2026-06-12 21:24:11 +00:00
3eb5129874 Add src/app/contact/page.tsx 2026-06-12 21:24:10 +00:00
0332d38e3a Add src/app/about/page.tsx 2026-06-12 21:24:10 +00:00
0e170e3b7a Merge version_2 into main
Merge version_2 into main
2026-06-11 22:25:03 +00:00
1b00e86dc3 Update src/app/page.tsx 2026-06-11 22:24:57 +00:00
6 changed files with 679 additions and 165 deletions

93
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,93 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Users, Lightbulb, TrendingUp } from 'lucide-react';
export default function WebAgency2AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "About", id: "/about" },
{ name: "Team", id: "/team" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="about" data-section="about">
<MetricCardOne
title="We are Webild, a digital agency crafting exceptional web experiences."
description="Our passion lies in transforming innovative ideas into stunning, functional, and user-centric digital products. We combine creative design with robust development to deliver solutions that drive growth and engage audiences."
metrics={[
{ id: "m1", value: "10+", title: "Years of Experience", description: "Crafting digital success since 2013.", icon: Lightbulb },
{ id: "m2", value: "150+", title: "Projects Completed", description: "Delivering exceptional results for diverse clients.", icon: TrendingUp },
{ id: "m3", value: "30+", title: "Expert Team", description: "A passionate group of designers and developers.", icon: Users }
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: 'View Our Work', href: '#work' },
{ text: 'Contact Us', href: '/contact' }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Team", href: "/team" },
{ label: "Work", href: "#work" },
{ label: "Services", href: "#services" },
{ 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: "#" }
]
}
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

79
src/app/contact/page.tsx Normal file
View 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 WebAgency2ContactPage() {
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: "Team", id: "/team" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<ContactForm
title="Let's Build Something Great"
description="Ready to elevate your digital presence? Fill out the form below and our team will get back to you shortly."
tag="Contact Us"
inputPlaceholder="Your Email Address"
buttonText="Send Message"
onSubmit={(email) => console.log('Contact form submitted with email:', email)}
centered={true}
useInvertedBackground={false}
/>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Team", href: "/team" },
{ label: "Work", href: "#work" },
{ label: "Services", href: "#services" },
{ 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>
</ThemeProvider>
);
}

View File

@@ -13,7 +13,9 @@ 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 FooterBase from "@/components/sections/footer/FooterBase";
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 PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users, CheckCircle } from "lucide-react";
export default function WebAgency2Page() { export default function WebAgency2Page() {
return ( return (
@@ -35,8 +37,10 @@ export default function WebAgency2Page() {
navItems={[ navItems={[
{ name: "Work", id: "work" }, { name: "Work", id: "work" },
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "Pricing", id: "pricing" },
{ name: "Testimonials", id: "testimonials" },
{ 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" }}
/> />
@@ -54,110 +58,115 @@ export default function WebAgency2Page() {
buttonAnimation="slide-up" buttonAnimation="slide-up"
carouselPosition="right" carouselPosition="right"
leftCarouselItems={[ 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-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-4.webp", imageAlt: "UI UX Design - SaaS platform" }, { 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-6.webp", imageAlt: "UI UX Design - Luminé skincare" }, { 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-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={[ 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-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-5.webp", imageAlt: "UI UX Design - Dental practice" }, { 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-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]" carouselItemClassName="!aspect-[4/5]"
/> />
<FeatureBento
title="Our Services" <div id="services" data-section="services">
description="We offer a full suite of digital services to help your brand stand out online." <FeatureBento
textboxLayout="default" title="Our Services"
useInvertedBackground={false} description="We offer a full suite of digital services to help your brand stand out online."
animationType="slide-up" textboxLayout="default"
buttons={[{ text: "All Services", href: "#services" }]} useInvertedBackground={false}
buttonAnimation="slide-up" animationType="slide-up"
features={[ buttons={[{ text: "All Services", href: "#services" }]}
{ buttonAnimation="slide-up"
title: "SEO", features={[
description: "We optimize your website to rank higher on search engines and drive organic traffic.", {
bentoComponent: "marquee", title: "SEO", description: "We optimize your website to rank higher on search engines and drive organic traffic.", bentoComponent: "marquee", centerIcon: Search,
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" },
title: "Web Development", { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Web project - Architecture studio" },
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-3.webp", imageAlt: "Web project - Summit Roofing" },
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" }, 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/dev-3.webp", imageAlt: "Web project - Summit Roofing" }, { 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" },
{ ],
title: "Branding", },
description: "Build a memorable brand identity that resonates with your audience.", ]}
bentoComponent: "media-stack", />
items: [ </div>
{ 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" }, <div id="pricing" data-section="pricing">
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" }, <PricingCardTwo
], title="Transparent Pricing & Packages"
}, description="Choose the plan that fits your business needs, with no hidden fees."
]} textboxLayout="default"
/> useInvertedBackground={false}
<FeatureCardTwentySix animationType="slide-up"
title="Our Work" plans={[
description="A selection of projects we've crafted for clients across industries." {
textboxLayout="default" id: "basic", badge: "Basic", badgeIcon: CheckCircle,
useInvertedBackground={false} price: "$999", subtitle: "Starter Website", buttons: [{ text: "Get Started", href: "#contact" }],
buttons={[{ text: "View All Work", href: "#work" }]} features: [
buttonAnimation="slide-up" "1-page website design", "Responsive for all devices", "Basic SEO optimization", "24/7 email support"
cardClassName="!h-auto aspect-video" ]
features={[ },
{ {
title: "Umbra Skincare", id: "standard", badge: "Standard", badgeIcon: CheckCircle,
description: "Luxury fragrance e-commerce", price: "$2499", subtitle: "Business Website", buttons: [{ text: "Choose Plan", href: "#contact" }],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", features: [
imageAlt: "Umbra Skincare website", "Up to 5 pages custom design", "Advanced SEO strategy", "Content Management System (CMS)", "Analytics integration", "Dedicated account manager"
buttonIcon: ArrowUpRight, ]
buttonHref: "#", },
}, {
{ id: "premium", badge: "Premium", badgeIcon: CheckCircle,
title: "Luxuria Travel", price: "$4999", subtitle: "E-commerce Solution", buttons: [{ text: "Contact Sales", href: "#contact" }],
description: "Bespoke luxury travel experiences", features: [
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", "Custom e-commerce platform", "Payment gateway setup", "Inventory & order management", "Marketing & sales tools", "Priority support"
imageAlt: "Luxuria Travel website", ]
buttonIcon: ArrowUpRight, }
buttonHref: "#", ]}
}, />
{ </div>
title: "Dental Care",
description: "Premier dental practice", <div id="work" data-section="work">
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", <FeatureCardTwentySix
imageAlt: "Luxury Dental Care website", title="Our Work"
buttonIcon: ArrowUpRight, description="A selection of projects we've crafted for clients across industries."
buttonHref: "#", textboxLayout="default"
}, useInvertedBackground={false}
{ buttons={[{ text: "View All Work", href: "#work" }]}
title: "Summit Roofing", buttonAnimation="slide-up"
description: "Professional roofing services", cardClassName="!h-auto aspect-video"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", features={[
imageAlt: "Summit Roofing website", {
buttonIcon: ArrowUpRight, 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: "#", 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,
title: "Dubai Real Estate", buttonHref: "#"},
description: "Luxury property listings", {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", 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,
imageAlt: "Dubai Real Estate website", buttonHref: "#"},
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>
<FeatureBento <FeatureBento
title="Our Promise" title="Our Promise"
description="We deliver results that speak for themselves." description="We deliver results that speak for themselves."
@@ -166,14 +175,9 @@ export default function WebAgency2Page() {
animationType="slide-up" animationType="slide-up"
features={[ features={[
{ {
title: "All Devices Optimization", title: "All Devices Optimization", description: "Pixel-perfect websites that look stunning on every screen size and device.", bentoComponent: "phone", statusIcon: Lock,
description: "Pixel-perfect websites that look stunning on every screen size and device.",
bentoComponent: "phone",
statusIcon: Lock,
alertIcon: Monitor, alertIcon: Monitor,
alertTitle: "Responsive check", alertTitle: "Responsive check", alertMessage: "All breakpoints passed", apps: [
alertMessage: "All breakpoints passed",
apps: [
{ name: "Phone", icon: Phone }, { name: "Phone", icon: Phone },
{ name: "SMS", icon: MessageCircle }, { name: "SMS", icon: MessageCircle },
{ name: "Books", icon: BookOpen }, { name: "Books", icon: BookOpen },
@@ -185,29 +189,17 @@ export default function WebAgency2Page() {
], ],
}, },
{ {
title: "Secure Hosting", title: "Secure Hosting", description: "Enterprise-grade security and 99.9% uptime for your website.", bentoComponent: "reveal-icon", icon: Shield,
description: "Enterprise-grade security and 99.9% uptime for your website.",
bentoComponent: "reveal-icon",
icon: Shield,
}, },
{ {
title: "Fast Turnaround", title: "Fast Turnaround", description: "From concept to launch in record time without sacrificing quality.", bentoComponent: "timeline", heading: "Project Launch", subheading: "Week 1", items: [
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: "Discovery & wireframes", detail: "Day 1-3" },
{ label: "Design & development", detail: "Day 4-10" }, { label: "Design & development", detail: "Day 4-10" },
{ label: "Testing & deployment", detail: "Day 11-14" }, { label: "Testing & deployment", detail: "Day 11-14" },
], ],
completedLabel: "Live", completedLabel: "Live"},
},
{ {
title: "Seamless Integrations", title: "Seamless Integrations", description: "Connect with the tools you already use — CRMs, analytics, payments, and more.", bentoComponent: "orbiting-icons", centerIcon: Puzzle,
description: "Connect with the tools you already use — CRMs, analytics, payments, and more.",
bentoComponent: "orbiting-icons",
centerIcon: Puzzle,
items: [ items: [
{ icon: Shield }, { icon: Shield },
{ icon: Monitor }, { icon: Monitor },
@@ -216,12 +208,30 @@ export default function WebAgency2Page() {
], ],
}, },
{ {
title: "Growth Trends", title: "Growth Trends", description: "Data-driven insights to optimize your search presence and drive traffic.", bentoComponent: "line-chart"},
description: "Data-driven insights to optimize your search presence and drive traffic.",
bentoComponent: "line-chart",
},
]} ]}
/> />
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="What Our Clients Say"
description="Hear from businesses that have experienced the Webild difference."
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "testimonial-1", title: "Transformed our online presence", quote: "Webild delivered beyond our expectations! Our new website is stunning and has significantly boosted our online presence and client engagement.", name: "John Doe", role: "Founder of Tech Innovations", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "John Doe"
},
{
id: "testimonial-2", title: "Professional and skilled team", quote: "The team at Webild is incredibly professional and skilled. They understood our vision perfectly and brought it to life with exceptional quality.", name: "Jane Smith", role: "Marketing Director at Global Solutions", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Jane Smith"
},
{
id: "testimonial-3", title: "Outstanding results and seamless process", quote: "Outstanding results and a seamless process from start to finish. Highly recommend Webild for any web development needs, they are truly the best.", name: "Emily White", role: "CEO of Creative Hub", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Emily White"
}
]}
/>
</div>
<TestimonialCardFifteen <TestimonialCardFifteen
testimonial="Webild completely transformed our online presence. The team delivered a stunning website that exceeded our expectations and doubled our conversion rate." testimonial="Webild completely transformed our online presence. The team delivered a stunning website that exceeded our expectations and doubled our conversion rate."
rating={5} rating={5}
@@ -233,19 +243,23 @@ export default function WebAgency2Page() {
avatarsAnimation="slide-up" avatarsAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
/> />
<MetricCardOne
title="Trusted by Industry Leaders" <div id="about" data-section="about">
description="Years of experience building digital products that drive real results." <MetricCardOne
textboxLayout="default" title="Trusted by Industry Leaders"
useInvertedBackground={false} description="Years of experience building digital products that drive real results."
gridVariant="uniform-all-items-equal" textboxLayout="default"
animationType="slide-up" useInvertedBackground={false}
metrics={[ gridVariant="uniform-all-items-equal"
{ id: "projects", value: "100+", title: "Projects", description: "Successfully delivered across all industries", icon: Award }, animationType="slide-up"
{ id: "satisfaction", value: "99%", title: "Satisfaction", description: "Client satisfaction rate and counting", icon: Users }, metrics={[
{ id: "years", value: "8+", title: "Years", description: "Of crafting exceptional digital experiences", icon: TrendingUp }, { 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>
<FeatureCardSixteen <FeatureCardSixteen
title="Why Choose Webild" title="Why Choose Webild"
description="See the difference a professional web agency makes." description="See the difference a professional web agency makes."
@@ -254,21 +268,11 @@ export default function WebAgency2Page() {
animationType="slide-up" animationType="slide-up"
negativeCard={{ negativeCard={{
items: [ items: [
"Generic templates with no personality", "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"],
"Slow load times and poor performance",
"No SEO strategy or search visibility",
"Outdated design that hurts credibility",
"No ongoing support after launch",
],
}} }}
positiveCard={{ positiveCard={{
items: [ items: [
"Custom designs tailored to your brand", "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"],
"Lightning-fast performance on all devices",
"Built-in SEO to drive organic traffic",
"Modern design that builds trust",
"Dedicated support and maintenance",
],
}} }}
/> />
<TeamCardFive <TeamCardFive
@@ -298,25 +302,28 @@ export default function WebAgency2Page() {
{ 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." },
]} ]}
/> />
<ContactCTA
tag="Get in Touch" <div id="contact" data-section="contact">
title="Ready to Transform Your Digital Presence?" <ContactCTA
description="Let's build something extraordinary together. Get in touch and let's discuss your next project." tag="Get in Touch"
background={{ variant: "rotated-rays-animated" }} title="Ready to Transform Your Digital Presence?"
buttons={[ description="Let's build something extraordinary together. Get in touch and let's discuss your next project."
{ text: "Start Your Project", href: "#contact" }, background={{ variant: "rotated-rays-animated" }}
{ text: "View Our Work", href: "#work" }, buttons={[
]} { text: "Start Your Project", href: "#contact" },
buttonAnimation="slide-up" { text: "View Our Work", href: "#work" },
useInvertedBackground={false} ]}
/> buttonAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<FooterBase <FooterBase
logoText="Webild" logoText="Webild"
copyrightText="© 2026 | Webild" copyrightText="© 2026 | Webild"
columns={[ columns={[
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About", href: "#about" }, { label: "About", href: "#about" },
{ label: "Services", href: "#services" }, { label: "Services", href: "#services" },
{ label: "Work", href: "#work" }, { label: "Work", href: "#work" },
@@ -324,8 +331,7 @@ export default function WebAgency2Page() {
], ],
}, },
{ {
title: "Services", title: "Services", items: [
items: [
{ label: "Web Development", href: "#" }, { label: "Web Development", href: "#" },
{ label: "SEO", href: "#" }, { label: "SEO", href: "#" },
{ label: "Branding", href: "#" }, { label: "Branding", href: "#" },
@@ -333,8 +339,7 @@ export default function WebAgency2Page() {
], ],
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [
{ label: "Twitter", href: "#" }, { label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" }, { label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" }, { label: "Instagram", href: "#" },

119
src/app/portfolio/page.tsx Normal file
View File

@@ -0,0 +1,119 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroSplit from "@/components/sections/hero/HeroSplit";
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Sparkles, ArrowUpRight } from "lucide-react";
export default function PortfolioPage() {
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: "/portfolio" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<HeroSplit
title="Our Portfolio"
description="Showcasing our award-winning projects and client successes in web design and development."
tag="Case Studies"
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Get a Quote", href: "/contact" },
{ text: "Learn More", href: "#casestudies" }
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=1"
imageAlt="Portfolio showcase image"
mediaAnimation="slide-up"
/>
<FeatureCardTwentySeven
title="Our Latest Work"
description="Explore a curated selection of our recent projects, from e-commerce platforms to bespoke web applications."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
features={[
{
id: "1", title: "Umbra Skincare", descriptions: ["Luxury fragrance e-commerce website designed for high conversions and an immersive brand experience."],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Umbra Skincare website design"},
{
id: "2", title: "Luxuria Travel", descriptions: ["Bespoke luxury travel platform, providing seamless booking and personalized itinerary planning."],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Luxuria Travel website design"},
{
id: "3", title: "Dental Care Pro", descriptions: ["Modern website for a premier dental practice, focusing on patient education and appointment scheduling."],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Dental Care Pro website design"},
{
id: "4", title: "Summit Roofing", descriptions: ["Professional website for a roofing service company, highlighting their expertise and customer testimonials."],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Summit Roofing website design"},
{
id: "5", title: "Dubai Real Estate", descriptions: ["Elegant platform for luxury property listings in Dubai, offering advanced search and virtual tours."],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Dubai Real Estate website design"}
]}
/>
<ContactText
text="Ready to transform your vision into a digital reality?"
buttons={[
{ text: "Get Started", href: "/contact" },
{ text: "View Services", href: "/" }
]}
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
/>
<FooterBaseCard
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "/" },
{ label: "Services", href: "/" },
{ label: "Work", href: "/portfolio" },
{ 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>
</ThemeProvider>
);
}

136
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,136 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroLogo from '@/components/sections/hero/HeroLogo';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles, Monitor, TrendingUp, Code, LayoutGrid, ShoppingCart, Award, Users } from "lucide-react";
export default function ServicesPage() {
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: "Contact", id: "contact" }
]}
button={{ text: "Get Started", href: "/#contact" }}
/>
<HeroLogo
logoText="Our Services"
description="From cutting-edge web development to impactful digital marketing, we offer a full spectrum of solutions to elevate your brand online."
buttons={[
{ text: "Get a Quote", href: "/#contact" }
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp"
imageAlt="Web Development services"
showDimOverlay={true}
className="pt-24"
/>
<FeatureHoverPattern
title="Tailored Solutions for Your Digital Needs"
description="We combine creativity with technical expertise to deliver results that exceed expectations, helping your business thrive in the digital landscape."
animationType="slide-up"
useInvertedBackground={false}
textboxLayout="default"
features={[
{
icon: Monitor,
title: "Web Design", description: "Crafting visually stunning and user-friendly interfaces that captivate your audience and enhance brand perception."},
{
icon: Code,
title: "Web Development", description: "Building robust, scalable, and high-performance websites tailored to your specific business goals and future growth."},
{
icon: TrendingUp,
title: "SEO & Digital Marketing", description: "Boosting your online visibility, driving organic traffic, and implementing strategic campaigns to maximize your reach."},
{
icon: Sparkles,
title: "Branding & Identity", description: "Developing compelling brand identities and cohesive visual systems that resonate with your target market."},
{
icon: LayoutGrid,
title: "UI/UX Design", description: "Designing intuitive and engaging user experiences, ensuring seamless interactions and higher conversion rates."},
{
icon: ShoppingCart,
title: "E-commerce Solutions", description: "Creating secure, feature-rich online stores with seamless payment integrations to drive sales and expand your business."}
]}
/>
<FaqBase
title="Common Questions About Our Services"
description="Find answers to frequently asked questions regarding our web design, development, and marketing services."
textboxLayout="default"
useInvertedBackground={false}
faqsAnimation="slide-up"
faqs={[
{ id: "1", title: "What is your process for web design projects?", content: "Our process typically involves discovery, wireframing, design mockups, development, testing, and launch. We ensure client collaboration at every stage." },
{ id: "2", title: "Do you provide ongoing support after launch?", content: "Yes, we offer various maintenance and support packages to ensure your website remains updated, secure, and performs optimally." },
{ id: "3", title: "How long does it take to build a website?", content: "Project timelines vary based on complexity and scope, usually ranging from 4 to 12 weeks. We'll provide a detailed estimate after our initial consultation." },
{ id: "4", title: "Can you help with SEO and digital marketing?", content: "Absolutely. We offer comprehensive SEO strategies, content marketing, and other digital marketing services to boost your online visibility and drive traffic." },
{ id: "5", title: "What industries do you specialize in?", content: "We work with a diverse range of industries, adapting our expertise to meet unique business needs. Our portfolio showcases projects from various sectors." }
]}
/>
<ContactCTA
tag="Get in Touch"
title="Ready to Elevate Your Digital Presence?"
description="Let's discuss how our services can transform your brand and achieve your business goals."
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: "/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: "#" }
]
}
]}
/>
</ReactLenis>
</ThemeProvider>
);
}

82
src/app/team/page.tsx Normal file
View File

@@ -0,0 +1,82 @@
"use client";
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";
export default function WebAgency2TeamPage() {
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: "Team", id: "/team" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<TeamCardTen
title="Meet Our Talented Team"
tag="The Minds Behind Webild"
memberVariant="default"
membersAnimation="slide-up"
members={[
{ id: "1", name: "Sarah Miller", 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", 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", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" },
{ id: "4", name: "Elena Petrova", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-4.webp", imageAlt: "Elena Petrova" }
]}
useInvertedBackground={false}
/>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Team", href: "/team" },
{ label: "Work", href: "#work" },
{ label: "Services", href: "#services" },
{ 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>
</ThemeProvider>
);
}