|
|
|
|
@@ -1,19 +1,18 @@
|
|
|
|
|
"use client";
|
|
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
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';
|
|
|
|
|
|
|
|
|
|
export default function HomePage() {
|
|
|
|
|
const navItems = [
|
|
|
|
|
{ name: 'Home', id: '/' },
|
|
|
|
|
];
|
|
|
|
|
const navItems = [{ name: "Home", id: "/" }];
|
|
|
|
|
|
|
|
|
|
export default function Page() {
|
|
|
|
|
return (
|
|
|
|
|
<ThemeProvider
|
|
|
|
|
defaultButtonVariant="text-stagger"
|
|
|
|
|
@@ -32,64 +31,65 @@ export default function HomePage() {
|
|
|
|
|
</div>
|
|
|
|
|
<div id="hero" data-section="hero">
|
|
|
|
|
<HeroBillboardTestimonial
|
|
|
|
|
title="Experience Excellence"
|
|
|
|
|
description="Premium services for your success."
|
|
|
|
|
background={{ variant: 'plain' }}
|
|
|
|
|
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="About Us"
|
|
|
|
|
description="We focus on delivering high-quality solutions."
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
mediaAnimation="none"
|
|
|
|
|
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 curated offerings."
|
|
|
|
|
title="Our Menu"
|
|
|
|
|
description="Handcrafted selections for your refined taste."
|
|
|
|
|
gridVariant="bento-grid"
|
|
|
|
|
animationType="none"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
animationType="slide-up"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
products={[]}
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="faq" data-section="faq">
|
|
|
|
|
<FaqSplitText
|
|
|
|
|
sideTitle="Questions"
|
|
|
|
|
faqsAnimation="none"
|
|
|
|
|
<FaqSplitMedia
|
|
|
|
|
title="FAQs"
|
|
|
|
|
description="Questions answered."
|
|
|
|
|
faqs={[]}
|
|
|
|
|
faqsAnimation="slide-up"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
|
|
|
<TestimonialCardFifteen
|
|
|
|
|
testimonial="Best service ever!"
|
|
|
|
|
rating={5}
|
|
|
|
|
author="John Doe"
|
|
|
|
|
avatars={[]}
|
|
|
|
|
ratingAnimation="none"
|
|
|
|
|
avatarsAnimation="none"
|
|
|
|
|
<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="Reach out to us today."
|
|
|
|
|
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="Excellence"
|
|
|
|
|
logoText="Webild"
|
|
|
|
|
columns={[]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|