Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c5f53b2ea9 | |||
| 9330e45ff7 | |||
| f72c22f544 | |||
| 85ca159dca | |||
| 14f30aac03 | |||
| beb93fa4a7 | |||
| 5df1bf87ce | |||
| cb712f520f | |||
| 86025e4bd4 | |||
| 9a2dbad834 | |||
| 4f11daa322 | |||
| 7f84e11be2 | |||
| 25fcf49537 | |||
| 62a9f57d45 | |||
| aafab6460d | |||
| fdf2cf6c31 |
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user