9 Commits

Author SHA1 Message Date
f371814b4e Update src/app/about/page.tsx 2026-05-08 19:42:15 +00:00
06975ea817 Update src/app/shop/page.tsx 2026-05-08 19:41:41 +00:00
7ae9530340 Update src/app/page.tsx 2026-05-08 19:41:41 +00:00
a6931f3001 Update src/app/contact/page.tsx 2026-05-08 19:41:40 +00:00
b16699d97b Update src/app/about/page.tsx 2026-05-08 19:41:40 +00:00
f21b6db5a6 Add src/app/shop/page.tsx 2026-05-08 19:40:55 +00:00
a0f8809c6d Update src/app/page.tsx 2026-05-08 19:40:55 +00:00
67a482d122 Add src/app/contact/page.tsx 2026-05-08 19:40:54 +00:00
8dedd37fa4 Add src/app/about/page.tsx 2026-05-08 19:40:54 +00:00
4 changed files with 328 additions and 324 deletions

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

@@ -0,0 +1,72 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import AboutMetric from "@/components/sections/about/AboutMetric";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Zap, Users, Award } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="about" data-section="about">
<AboutMetric
title="About Our Agency"
metrics={[
{ icon: Award, label: "Industry Experience", value: "8+ Years" },
{ icon: Users, label: "Happy Clients", value: "100+" },
{ icon: Zap, label: "Projects Completed", value: "250+" },
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="cta" data-section="cta">
<ContactCTA
tag="Work With Us"
title="Let's Create Something Great"
description="We are always looking for new challenges. Contact us to start your next project."
buttons={[{ text: "Get in Touch", href: "/contact" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }
]}
copyrightText="© 2026 | Webild"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

60
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,60 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Contact Us"
description="Have a project in mind? We'd love to hear from you."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }
]}
textarea={{ name: "message", placeholder: "Tell us about your project" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }
]}
copyrightText="© 2026 | Webild"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -6,16 +6,12 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
import FeatureBento from "@/components/sections/feature/FeatureBento"; import FeatureBento from "@/components/sections/feature/FeatureBento";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
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 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 { Sparkles, Search, ArrowUpRight } 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";
export default function WebAgency2Page() { export default function ShoeStorePage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="text-stagger"
@@ -23,327 +19,142 @@ export default function WebAgency2Page() {
borderRadius="pill" borderRadius="pill"
contentWidth="medium" contentWidth="medium"
sizing="medium" sizing="medium"
background="none" background="circleGradient"
cardStyle="glass-elevated" cardStyle="glass-elevated"
primaryButtonStyle="metallic" primaryButtonStyle="gradient"
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
headingFontWeight="medium" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<NavbarLayoutFloatingOverlay <div id="nav" data-section="nav">
brandName="Webild" <NavbarLayoutFloatingOverlay
navItems={[ brandName="SoleStride"
{ name: "Work", id: "work" }, navItems={[
{ name: "Services", id: "services" }, { name: "Home", id: "/" },
{ name: "About", id: "about" }, { name: "Shop", id: "/shop" },
{ name: "Contact", id: "contact" }, { name: "About", id: "/about" },
]} { name: "Contact", id: "/contact" },
button={{ text: "Get Started", href: "#contact" }} ]}
/> button={{ text: "Shop Now", href: "/shop" }}
<HeroSplitDoubleCarousel />
title="We Build Digital Experiences" </div>
description="Transform your brand with cutting-edge web design and development. We craft stunning websites that convert visitors into customers." <div id="hero" data-section="hero">
tag="Award-Winning Agency" <HeroSplitDoubleCarousel
tagIcon={Sparkles} title="Step Into the Future"
tagAnimation="slide-up" description="Premium footwear designed for performance, comfort, and unmatched style. Elevate every step with SoleStride."
background={{ variant: "canvas-reveal" }} tag="New Collection 2026"
buttons={[ tagIcon={Sparkles}
{ text: "Start Project", href: "#contact" }, tagAnimation="slide-up"
{ text: "View Work", href: "#work" }, background={{ variant: "canvas-reveal" }}
]} buttons={[
buttonAnimation="slide-up" { text: "Explore Collection", href: "/shop" },
carouselPosition="right" { text: "Contact Us", href: "/contact" },
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" }, buttonAnimation="slide-up"
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "UI UX Design - SaaS platform" }, carouselPosition="right"
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "UI UX Design - Luminé skincare" }, leftCarouselItems={[
{ 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-1.webp", imageAlt: "Running Shoes" },
{ 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-4.webp", imageAlt: "Lifestyle Sneakers" },
]} { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "Performance Trainers" },
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", imageAlt: "Casual Loafers" },
{ 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: "High-top Boots" },
{ 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-1.webp", imageAlt: "Extra Item 3" },
]} ]}
carouselItemClassName="!aspect-[4/5]" carouselItemClassName="!aspect-[4/5]"
/> />
<FeatureBento </div>
title="Our Services" <div id="features" data-section="features">
description="We offer a full suite of digital services to help your brand stand out online." <FeatureBento
textboxLayout="default" title="Why SoleStride?"
useInvertedBackground={false} description="Experience the perfect blend of innovation and craftsmanship."
animationType="slide-up" textboxLayout="default"
buttons={[{ text: "All Services", href: "#services" }]} useInvertedBackground={false}
buttonAnimation="slide-up" animationType="slide-up"
features={[ buttons={[{ text: "Learn More", href: "/about" }]}
{ buttonAnimation="slide-up"
title: "SEO", features={[
description: "We optimize your website to rank higher on search engines and drive organic traffic.", {
bentoComponent: "marquee", title: "Eco-Friendly Materials", description: "Crafted from sustainable, high-quality recycled materials for the planet.", bentoComponent: "marquee", centerIcon: Search,
centerIcon: Search, variant: "text", texts: ["Organic", "Recycled", "Durable", "Lightweight", "Sustainable", "Breathable", "Vegan", "Ethical"],
variant: "text", },
texts: ["Keywords", "Backlinks", "Meta Tags", "Organic Traffic", "Rankings", "Analytics", "SERP", "Indexing"], {
}, title: "Ergonomic Design", description: "Designed to provide ultimate support for long-distance wear.", bentoComponent: "media-stack", items: [
{ { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Ergonomic soul" },
title: "Web Development", { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Arch support" },
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-2.webp", imageAlt: "Extra Item 3" },
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: "Global Delivery", description: "Fast shipping to over 50 countries worldwide.", 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", imageAlt: "Global reach" },
], { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Fast shipping" },
}, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", imageAlt: "Extra Item 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" }, <div id="picks" data-section="picks">
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp", imageAlt: "Brand project 2" }, <FeatureCardTwentySix
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Brand project 3" }, title="Top Picks"
], description="Our best-selling collection for this season."
}, textboxLayout="default"
]} useInvertedBackground={false}
/> buttons={[{ text: "View Store", href: "/shop" }]}
<FeatureCardTwentySix buttonAnimation="slide-up"
title="Our Work" cardClassName="!h-auto aspect-video"
description="A selection of projects we've crafted for clients across industries." features={[
textboxLayout="default" {
useInvertedBackground={false} title: "Urban Runner", description: "Perfect for daily city life", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Urban Runner", buttonIcon: ArrowUpRight,
buttons={[{ text: "View All Work", href: "#work" }]} buttonHref: "/shop"},
buttonAnimation="slide-up" {
cardClassName="!h-auto aspect-video" title: "Summit Trekker", description: "Conquer every mountain", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Summit Trekker", buttonIcon: ArrowUpRight,
features={[ buttonHref: "/shop"},
{ {
title: "Umbra Skincare", title: "Elite Court", description: "Performance tennis gear", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Elite Court", buttonIcon: ArrowUpRight,
description: "Luxury fragrance e-commerce", buttonHref: "/shop"},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", ]}
imageAlt: "Umbra Skincare website", />
buttonIcon: ArrowUpRight, </div>
buttonHref: "#", <div id="testimonial" data-section="testimonial">
}, <TestimonialCardFifteen
{ testimonial="SoleStride sneakers are the most comfortable pair I've ever owned. Perfect for both office wear and weekend adventures."
title: "Luxuria Travel", rating={5}
description: "Bespoke luxury travel experiences", author="— Alex Johnson, Avid Runner"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", avatars={[
imageAlt: "Luxuria Travel website", { src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", alt: "Alex" },
buttonIcon: ArrowUpRight, ]}
buttonHref: "#", ratingAnimation="slide-up"
}, avatarsAnimation="slide-up"
{ useInvertedBackground={false}
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="footer" data-section="footer">
imageAlt: "Luxury Dental Care website", <FooterBase
buttonIcon: ArrowUpRight, logoText="SoleStride"
buttonHref: "#", copyrightText="© 2026 | SoleStride"
}, columns={[
{ {
title: "Summit Roofing", title: "Menu", items: [
description: "Professional roofing services", { label: "Home", href: "/" },
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", { label: "Shop", href: "/shop" },
imageAlt: "Summit Roofing website", { label: "About", href: "/about" },
buttonIcon: ArrowUpRight, { label: "Contact", href: "/contact" },
buttonHref: "#", ],
}, },
{ {
title: "Dubai Real Estate", title: "Shop", items: [
description: "Luxury property listings", { label: "Running", href: "/shop" },
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", { label: "Casual", href: "/shop" },
imageAlt: "Dubai Real Estate website", { label: "Formal", href: "/shop" },
buttonIcon: ArrowUpRight, ],
buttonHref: "#", },
}, ]}
]} />
/> </div>
<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",
},
]}
/>
<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>
); );
} }

61
src/app/shop/page.tsx Normal file
View File

@@ -0,0 +1,61 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ProductCardThree from "@/components/sections/product/ProductCardThree";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function ShopPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="products" data-section="products">
<ProductCardThree
title="Our Products"
description="Explore our curated collection of digital assets and tools."
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={false}
products={[
{ id: "1", name: "Design System Kit", price: "$99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp" },
{ id: "2", name: "UI Components Pack", price: "$49", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp" },
{ id: "3", name: "Agency Template", price: "$129", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Webild"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
copyrightText="© 2026 | Webild"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}