98 lines
3.4 KiB
TypeScript
98 lines
3.4 KiB
TypeScript
"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 FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
|
|
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"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple navItems={navItems} />
|
|
</div>
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardTestimonial
|
|
title="Experience Excellence"
|
|
description="Discover our premium services designed for your success."
|
|
background={{ variant: "plain" }}
|
|
testimonials={[]}
|
|
/>
|
|
</div>
|
|
<div id="about" data-section="about">
|
|
<SplitAbout
|
|
title="About Us"
|
|
description="We provide top-tier solutions with a focus on innovation and quality."
|
|
textboxLayout="default"
|
|
mediaAnimation="none"
|
|
useInvertedBackground={false}
|
|
bulletPoints={[]}
|
|
/>
|
|
</div>
|
|
<div id="menu" data-section="menu">
|
|
<ProductCardFour
|
|
title="Our Products"
|
|
description="Explore our curated selection of high-quality items."
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="none"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
products={[]}
|
|
/>
|
|
</div>
|
|
<div id="faq" data-section="faq">
|
|
<FaqSplitText
|
|
faqs={[]}
|
|
sideTitle="Frequently Asked Questions"
|
|
faqsAnimation="none"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardFifteen
|
|
testimonial="The service provided was exceptional and exceeded my expectations."
|
|
rating={5}
|
|
author="Jane Doe"
|
|
avatars={[]}
|
|
ratingAnimation="none"
|
|
avatarsAnimation="none"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
<div id="contact" data-section="contact">
|
|
<ContactCenter
|
|
tag="Contact"
|
|
title="Get In Touch"
|
|
description="Have questions? Reach out to our team anytime."
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
logoText="Webild"
|
|
columns={[]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |