Merge version_1 into main #8

Merged
bender merged 1 commits from version_1 into main 2026-04-26 03:08:15 +00:00

View File

@@ -1,4 +1,4 @@
'use client';
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogo from '@/components/sections/hero/HeroLogo';
@@ -7,82 +7,68 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import Link from 'next/link';
const navItems = [
{ name: "Home", id: "/" }
];
const navItems = [{ name: "Home", id: "/" }];
export default function Page() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ThemeProvider>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen navItems={navItems} />
<NavbarStyleFullscreen navItems={navItems} brandName="Webild" />
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Webild"
description="Innovative solutions for modern problems."
buttons={[{ text: "Get Started", href: "#" }]}
/>
<HeroLogo logoText="Webild" description="Innovative solutions for your digital growth." buttons={[{ text: "Get Started" }]} />
</div>
<div id="why-us" data-section="why-us">
<FeatureCardTwentySeven
title="Why Us?"
description="We provide the best services for your business growth."
textboxLayout="default"
title="Why Choose Us"
description="We deliver excellence through innovation."
features={[{ id: "1", title: "Quality", descriptions: ["Top notch services"] }, { id: "2", title: "Speed", descriptions: ["Fast delivery"] }]}
animationType="slide-up"
useInvertedBackground={false}
features={[
{ id: "1", title: "Reliable", descriptions: ["Always there when you need us."] },
{ id: "2", title: "Fast", descriptions: ["Speed is our middle name."] }
]}
textboxLayout="default"
/>
</div>
<div id="services" data-section="services">
<ProductCardTwo
title="Our Services"
description="Choose from our high-quality product offerings."
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
description="Tailored solutions for your business."
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground={false}
textboxLayout="default"
products={[
{ id: "p1", brand: "Pro", name: "Basic Plan", price: "$99", rating: 5, reviewCount: "10", imageSrc: "https://images.unsplash.com/photo-1593642532744-d377ab507dc8" },
{ id: "p2", brand: "Pro", name: "Growth Plan", price: "$199", rating: 5, reviewCount: "20", imageSrc: "https://images.unsplash.com/photo-1593642532744-d377ab507dc8" },
{ id: "p3", brand: "Pro", name: "Enterprise Plan", price: "$499", rating: 5, reviewCount: "50", imageSrc: "https://images.unsplash.com/photo-1593642532744-d377ab507dc8" }
{ id: "1", brand: "Web", name: "Web Design", price: "$500", rating: 5, reviewCount: "10", imageSrc: "https://images.unsplash.com/photo-1547658719-da2b51169165" },
{ id: "2", brand: "App", name: "App Dev", price: "$1000", rating: 5, reviewCount: "20", imageSrc: "https://images.unsplash.com/photo-1551650975-87deedd944c3" },
{ id: "3", brand: "Marketing", name: "SEO", price: "$300", rating: 5, reviewCount: "15", imageSrc: "https://images.unsplash.com/photo-1560472354-b33ffe0c4d4d" }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
title="Client Reviews"
description="Hear from our happy clients."
textboxLayout="default"
title="What They Say"
description="Trusted by global brands."
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground={false}
textboxLayout="default"
testimonials={[
{ id: "t1", name: "Alice", role: "CEO", company: "TechCorp", rating: 5 },
{ id: "t2", name: "Bob", role: "CTO", company: "SoftCo", rating: 5 }
{ id: "1", name: "John Doe", role: "CEO", company: "TechCorp", rating: 5 },
{ id: "2", name: "Jane Smith", role: "CTO", company: "SoftInc", rating: 5 }
]}
/>
</div>
<div id="urgency" data-section="urgency">
<ContactSplit
tag="Newsletter"
title="Stay Informed"
description="Subscribe for the latest updates from Webild."
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
tag="Contact Us"
title="Ready to grow?"
description="Get in touch with our team today."
background={{ variant: "plain" }}
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Webild"
columns={[
{ title: "Product", items: [{ label: "Home", href: "/" }] }
]}
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
/>
</div>
</ThemeProvider>