16 Commits

Author SHA1 Message Date
c5f53b2ea9 Update src/app/page.tsx 2026-04-08 21:04:43 +00:00
9330e45ff7 Update src/app/page.tsx 2026-04-08 21:04:15 +00:00
f72c22f544 Update src/app/page.tsx 2026-04-08 21:03:47 +00:00
85ca159dca Merge version_1 into main
Merge version_1 into main
2026-04-08 20:47:13 +00:00
14f30aac03 Merge version_1 into main
Merge version_1 into main
2026-04-08 20:46:44 +00:00
beb93fa4a7 Merge version_1 into main
Merge version_1 into main
2026-04-08 20:38:38 +00:00
5df1bf87ce Merge version_1 into main
Merge version_1 into main
2026-04-08 20:38:09 +00:00
cb712f520f Merge version_1 into main
Merge version_1 into main
2026-04-08 20:26:25 +00:00
86025e4bd4 Merge version_1 into main
Merge version_1 into main
2026-04-08 20:25:54 +00:00
9a2dbad834 Merge version_1 into main
Merge version_1 into main
2026-04-08 20:25:21 +00:00
4f11daa322 Merge version_1 into main
Merge version_1 into main
2026-04-08 20:17:01 +00:00
7f84e11be2 Merge version_1 into main
Merge version_1 into main
2026-04-08 20:16:23 +00:00
25fcf49537 Merge version_1 into main
Merge version_1 into main
2026-04-08 20:15:46 +00:00
62a9f57d45 Merge version_1 into main
Merge version_1 into main
2026-04-08 20:15:11 +00:00
aafab6460d Merge version_1 into main
Merge version_1 into main
2026-04-08 20:14:35 +00:00
fdf2cf6c31 Merge version_1 into main
Merge version_1 into main
2026-04-08 20:14:01 +00:00

View File

@@ -1,18 +1,18 @@
"use client";
'use client';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
const navItems = [{ name: "Home", id: "/" }];
export default function HomePage() {
export default function Page() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -27,69 +27,70 @@ export default function HomePage() {
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleApple navItems={navItems} brandName="Webild" />
<NavbarStyleApple navItems={navItems} />
</div>
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
title="Elevate Your Brand"
description="We build high-performance digital experiences that convert."
background={{ variant: "animated-grid" }}
testimonials={[{ name: "Jane Doe", handle: "@janedoe", testimonial: "Fantastic service!", rating: 5 }]}
title="Modern Elegance"
description="Experience the future of design with our premium solutions."
background={{ variant: "gradient-bars" }}
testimonials={[]}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
title="Our Story"
description="Dedicated to excellence in design and development."
textboxLayout="default"
useInvertedBackground={false}
mediaAnimation="opacity"
bulletPoints={[{ title: "Quality", description: "High standards" }, { title: "Speed", description: "Fast delivery" }]}
title="About Us"
description="We are committed to delivering excellence."
textboxLayout="split"
bulletPoints={[]}
mediaAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="menu" data-section="menu">
<ProductCardFour
title="Our Services"
description="Explore our offerings"
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
title="Our Menu"
description="Handcrafted selections for your refined taste."
gridVariant="bento-grid"
animationType="slide-up"
useInvertedBackground={false}
products={[{ id: "1", name: "Web Design", price: "$99", variant: "Pro", imageSrc: "/img1.jpg" }, { id: "2", name: "SEO", price: "$49", variant: "Basic", imageSrc: "/img2.jpg" }, { id: "3", name: "Marketing", price: "$199", variant: "Elite", imageSrc: "/img3.jpg" }]}
products={[]}
textboxLayout="default"
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
faqs={[{ id: "1", title: "How do I start?", content: "Contact us today!" }, { id: "2", title: "Pricing?", content: "Custom quotes." }]}
sideTitle="FAQ"
<FaqSplitMedia
title="FAQs"
description="Questions answered."
faqs={[]}
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
testimonial="Best team ever!"
rating={5}
author="John Smith"
avatars={[{ src: "/avatar.jpg", alt: "Author" }]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
<TestimonialCardSixteen
title="Testimonials"
description="Hear from our satisfied partners."
testimonials={[]}
kpiItems={[{ value: "100+", label: "Clients" }, { value: "50+", label: "Projects" }, { value: "10+", label: "Awards" }]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Contact"
title="Get in touch"
description="Let's build something great."
background={{ variant: "plain" }}
<ContactSplitForm
title="Get In Touch"
description="We would love to hear from you."
inputs={[{ name: "email", type: "email", placeholder: "Email" }, { name: "name", type: "text", placeholder: "Name" }]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Webild"
columns={[{ title: "Navigate", items: [{ label: "Home", href: "/" }] }]}
logoText="Webild"
columns={[]}
/>
</div>
</ThemeProvider>