diff --git a/src/app/page.tsx b/src/app/page.tsx index 65b0872..b8d2531 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ -'use client'; +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; @@ -10,46 +10,109 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { ArrowRight, Star, Shield, Zap, CheckCircle } from 'lucide-react'; -const navItems = [{ name: "Home", id: "/" }]; +const navItems = [ + { name: "Home", id: "/" }, +]; export default function Page() { return ( - +
({ id: `hero-${i}`, imageSrc: "https://picsum.photos/400/600" }))} + title="Welcome to Webild" + description="We build amazing digital experiences." + background={{ variant: 'rotated-rays-animated' }} + carouselItems={[ + { id: '1', imageSrc: 'https://images.unsplash.com/photo-1550751827-4bd374c3f58b' }, + { id: '2', imageSrc: 'https://images.unsplash.com/photo-1550751827-4bd374c3f58b' }, + { id: '3', imageSrc: 'https://images.unsplash.com/photo-1550751827-4bd374c3f58b' }, + { id: '4', imageSrc: 'https://images.unsplash.com/photo-1550751827-4bd374c3f58b' }, + { id: '5', imageSrc: 'https://images.unsplash.com/photo-1550751827-4bd374c3f58b' }, + { id: '6', imageSrc: 'https://images.unsplash.com/photo-1550751827-4bd374c3f58b' } + ]} />
- +
- +
- +
- +
- +
- +
- +
);