Switch to version 1: modified src/app/page.tsx

This commit is contained in:
2026-05-15 08:44:54 +00:00
parent 7b1a0a94ac
commit 7a79d21a0b

View File

@@ -10,7 +10,6 @@ import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import { Crown, Sparkles, Star } from "lucide-react";
export default function LandingPage() {
@@ -34,7 +33,6 @@ export default function LandingPage() {
{ name: "Home", id: "#hero" },
{ name: "Collection", id: "#collections" },
{ name: "Why Icon", id: "#why" },
{ name: "Vending", id: "#vending" },
{ name: "Contact", id: "#contact" },
]}
brandName="ICONs PERFUME"
@@ -105,22 +103,6 @@ export default function LandingPage() {
/>
</div>
<div id="vending" data-section="vending">
<FeatureCardThree
animationType="slide-up"
textboxLayout="split"
gridVariant="one-large-right-three-stacked-left"
useInvertedBackground={false}
title="Experience ICON Vending"
description="Luxury fragrances available on demand at select locations."
features={[
{ title: "Convenient Access", description: "Experience luxury scents in high-traffic premium retail environments.", imageSrc: "http://img.b2bpic.net/free-photo/shopping-mall-interior_23-2148705663.jpg" },
{ title: "Instant Selection", description: "Choose your signature fragrance through our intelligent, contactless interface.", imageSrc: "http://img.b2bpic.net/free-photo/vending-machine-with-snacks_23-2148842602.jpg" },
{ title: "Gift Anywhere", description: "Perfect for last-minute luxury gifts on the go.", imageSrc: "http://img.b2bpic.net/free-photo/people-walking-through-shopping-mall_23-2148332152.jpg" }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
animationType="slide-up"
@@ -153,7 +135,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Navigate", items: [{ label: "Explore", href: "#collections" }, { label: "Why Us", href: "#why" }, { label: "Vending", href: "#vending" }, { label: "Contact", href: "#contact" }] },
{ title: "Navigate", items: [{ label: "Explore", href: "#collections" }, { label: "Why Us", href: "#why" }, { label: "Contact", href: "#contact" }] },
{ title: "Connect", items: [{ label: "WhatsApp", href: "https://wa.me/123456789" }, { label: "Instagram", href: "#" }, { label: "Email", href: "mailto:hello@iconsperfume.com" }] },
]}
logoText="ICONs PERFUME"
@@ -163,4 +145,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}