Update src/app/page.tsx

This commit is contained in:
2026-02-06 13:44:55 +00:00
parent 9ab52a7d3b
commit 5c688443e4

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import HeroSplit from '@/components/sections/hero/HeroSplit';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
@@ -40,21 +40,19 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardGallery <HeroSplit
background={{ variant: "glowing-orb" }}
title="Introducing iPhone 15 Pro" title="Introducing iPhone 15 Pro"
description="Experience the future of mobile technology. Titanium design, advanced camera system, and breakthrough performance in your pocket." description="Experience the future of mobile technology. Titanium design, advanced camera system, and breakthrough performance in your pocket."
background={{ variant: "sparkles-gradient" }}
tag="Now Available" tag="Now Available"
tagIcon={Sparkles} tagIcon={Sparkles}
buttons={[ buttons={[
{ text: "Shop Now", href: "products" }, { text: "Shop Now", href: "products" },
{ text: "Learn More", href: "features" } { text: "Learn More", href: "features" }
]} ]}
mediaItems={[ imageSrc="https://img.b2bpic.net/free-photo/mockup-mobile-phone-screen_53876-63379.jpg"
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "iPhone 15 Pro Premium Smartphone" }, imageAlt="iPhone 15 Pro Premium Smartphone"
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "iPhone 15 Pro Camera Features" }, imagePosition="right"
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "iPhone 15 Pro Design and Build" }
]}
/> />
</div> </div>