Merge version_2 into main #2

Merged
bender merged 4 commits from version_2 into main 2026-05-08 20:39:06 +00:00
4 changed files with 121 additions and 163 deletions

View File

@@ -3,49 +3,42 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import TeamCardSix from "@/components/sections/team/TeamCardSix";
import FooterBase from "@/components/sections/footer/FooterBase";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
export default function AboutPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<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" }}
/>
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Our " },
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp", alt: "Story" },
{ type: "text", content: " Story" },
]}
useInvertedBackground={false}
/>
<TeamCardSix
title="The Experts Behind Webild"
members={[
{ 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" },
{ 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" },
{ 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" },
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={true}
/>
<FooterBase
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "Work", id: "/work" },
{ name: "Pricing", id: "/pricing" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<FooterLogoEmphasis
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
{ title: "Services", items: [{ label: "Web Dev", href: "/services" }, { label: "SEO", href: "/services" }] },
{ title: "Connect", items: [{ label: "Twitter", href: "#" }] },
{ items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "Work", href: "/work" }, { label: "Contact", href: "/contact" }] }
]}
/>
</ReactLenis>

View File

@@ -3,76 +3,53 @@
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";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="metallic"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
headingFontWeight="normal"
>
<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" }}
/>
<ContactSplitForm
title="Contact Us"
description="Get in touch for inquiries, partnerships, or just to say hello."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true }
]}
textarea={{ name: "message", placeholder: "How can we help?", rows: 5 }}
buttonText="Send Message"
mediaPosition="left"
/>
<FooterBase
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "Work", id: "/work" },
{ name: "Pricing", id: "/pricing" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Let's get in touch."
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<FooterLogoEmphasis
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: "#" },
],
},
{ items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "Work", href: "/work" }, { label: "Contact", href: "/contact" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -3,55 +3,42 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
export default function PricingPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", href: "/work" },
{ name: "Pricing", href: "/pricing" },
{ name: "About", href: "/about" },
{ name: "Contact", href: "/contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<PricingCardNine
title="Simple, Transparent Pricing"
description="Choose the plan that best fits your business goals."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
plans={[
{
id: "starter", title: "Starter", price: "$1,999", period: "one-time", features: ["Landing page design", "SEO optimization", "1 Month support"],
button: { text: "Select Starter", href: "/contact" },
},
{
id: "pro", title: "Professional", price: "$4,999", period: "one-time", features: ["Multi-page website", "Advanced SEO", "E-commerce enabled", "3 Months support"],
button: { text: "Select Pro", href: "/contact" },
},
{
id: "enterprise", title: "Enterprise", price: "Custom", period: "contact us", features: ["Full custom build", "Priority support", "Dedicated strategy", "Unlimited revisions"],
button: { text: "Get Quote", href: "/contact" },
},
]}
/>
<ContactCTA
tag="Need help?"
title="Not sure which plan to choose?"
description="Let's chat about your project requirements."
buttons={[{ text: "Contact Us", href: "/contact" }]}
/>
<FooterBase
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "Work", id: "/work" },
{ name: "Pricing", id: "/pricing" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<FooterLogoEmphasis
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Pricing", href: "/pricing" }, { label: "Work", href: "/work" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "Work", href: "/work" }, { label: "Contact", href: "/contact" }] }
]}
/>
</ReactLenis>

View File

@@ -3,41 +3,42 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Search, Monitor, Zap } from "lucide-react";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
export default function ServicesPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<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" }}
/>
<FeatureCardTwentySix
title="Our Service Offerings"
description="We provide end-to-end digital services tailored for high-growth businesses."
features={[
{ title: "SEO Strategy", description: "Comprehensive search optimization and content strategy.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp" },
{ title: "Web Development", description: "High-performance web builds using React and Next.js.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp" },
{ title: "Branding & UI/UX", description: "Crafting beautiful and functional digital products.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-3.webp" },
]}
animationType="slide-up"
useInvertedBackground={false}
/>
<FooterBase
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "Work", id: "/work" },
{ name: "Pricing", id: "/pricing" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<FooterLogoEmphasis
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
{ title: "Services", items: [{ label: "Web Dev", href: "/services" }, { label: "SEO", href: "/services" }] },
{ title: "Connect", items: [{ label: "Twitter", href: "#" }] },
{ items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "Work", href: "/work" }, { label: "Contact", href: "/contact" }] }
]}
/>
</ReactLenis>