Merge version_1 into main #16
122
src/app/page.tsx
122
src/app/page.tsx
@@ -1,124 +1,54 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
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';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
|
||||
export default function Page() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Work", id: "/work" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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";
|
||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [{ name: "Home", id: "/" }];
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ThemeProvider>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple navItems={navItems} />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Build Your Future"
|
||||
description="Innovation at the speed of light."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
carouselItems={Array(6).fill({ id: "1", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" })}
|
||||
title="Innovating the Future"
|
||||
description="Transforming ideas into reality with advanced digital solutions."
|
||||
background={{ variant: "animated-grid" }}
|
||||
carouselItems={Array.from({ length: 6 }).map((_, i) => ({ id: `h${i}`, imageSrc: `https://picsum.photos/seed/${i}/800/600` }))}
|
||||
/>
|
||||
</div>
|
||||
<div id="trust" data-section="trust">
|
||||
<SocialProofOne
|
||||
names={["Company A", "Company B", "Company C", "Company D"]}
|
||||
title="Trusted By"
|
||||
description="Leading industry partners."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<SocialProofOne names={["TechCorp", "InnovateAI", "GlobalSystems"]} title="Trusted By Leaders" description="Partnering with industry pioneers." />
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardMedia
|
||||
features={[
|
||||
{ id: "1", title: "Design", description: "High quality UI/UX", tag: "Design" },
|
||||
{ id: "2", title: "Dev", description: "Fast robust code", tag: "Code" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Our Services"
|
||||
description="Comprehensive solutions."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FeatureCardMedia title="Our Services" description="We provide cutting edge digital services." features={[]} animationType="slide-up" />
|
||||
</div>
|
||||
<div id="work" data-section="work">
|
||||
<ProductCardOne
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
title="Portfolio"
|
||||
description="Selected works."
|
||||
products={[
|
||||
{ id: "1", name: "Product 1", price: "$10", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" },
|
||||
{ id: "2", name: "Product 2", price: "$20", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" },
|
||||
{ id: "3", name: "Product 3", price: "$30", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<ProductCardOne title="Our Portfolio" description="Showcasing our recent work." products={[]} gridVariant="bento-grid" animationType="slide-up" textboxLayout="default" />
|
||||
</div>
|
||||
<div id="process" data-section="process">
|
||||
<MetricCardEleven
|
||||
metrics={[
|
||||
{ id: "1", value: "100%", title: "Success", description: "Proven results", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Our Process"
|
||||
description="Efficiency driven."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<MetricCardEleven title="Our Process" description="How we deliver excellence." metrics={[]} animationType="slide-up" />
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
testimonials={[
|
||||
{ id: "1", name: "John", role: "CEO", testimonial: "Fantastic work!" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
title="Testimonials"
|
||||
description="What they say."
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<TestimonialCardTwo title="Client Voices" description="What our partners say about us." testimonials={[]} animationType="slide-up" textboxLayout="default" />
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
faqs={[
|
||||
{ id: "1", title: "How?", content: "Simple steps." }
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
title="FAQs"
|
||||
description="Questions answered."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
<FaqSplitMedia title="Questions?" description="Answers to common inquiries." faqs={[]} faqsAnimation="slide-up" textboxLayout="default" />
|
||||
</div>
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactText
|
||||
text="Let's collaborate!"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<ContactText text="Ready to start your journey?" background={{ variant: "plain" }} />
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[]}
|
||||
bottomLeftText="© 2024"
|
||||
bottomRightText="Privacy"
|
||||
/>
|
||||
<FooterSimple columns={[]} bottomLeftText="© 2024 TechCorp" bottomRightText="All rights reserved." />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user