Update src/app/page.tsx
This commit is contained in:
@@ -8,9 +8,7 @@ import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwent
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { Award, Sparkles, Star } from "lucide-react";
|
||||
@@ -35,8 +33,6 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil", id: "#home"},
|
||||
{
|
||||
name: "Produits", id: "#products"},
|
||||
{
|
||||
name: "Fonctionnalités", id: "#features"},
|
||||
{
|
||||
@@ -59,7 +55,7 @@ export default function LandingPage() {
|
||||
tagAnimation="none"
|
||||
buttons={[
|
||||
{
|
||||
text: "Parcourir Notre Collection", href: "#products"},
|
||||
text: "Parcourir Notre Collection", href: "#home"},
|
||||
]}
|
||||
buttonAnimation="none"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/everyday-bath-utensils-dark-marble-background_58702-17724.jpg"
|
||||
@@ -118,69 +114,7 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "prod-1", name: "Système Pod Nova", price: "39.99 $", imageSrc: "http://img.b2bpic.net/free-photo/close-up-air-fryer_23-2151723452.jpg", imageAlt: "Appareil de vape Système Pod Nova"},
|
||||
{
|
||||
id: "prod-2", name: "Mod VaporMax Pro", price: "89.99 $", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-using-nebulizer-home_23-2150562053.jpg", imageAlt: "Box Mod VaporMax Pro"},
|
||||
{
|
||||
id: "prod-3", name: "E-liquide Baies Exotiques", price: "19.99 $", imageSrc: "http://img.b2bpic.net/free-photo/view-alcoholic-beverage-with-cbd-oil-infusion_23-2150762282.jpg", imageAlt: "Bouteille d'e-liquide Baies Exotiques"},
|
||||
{
|
||||
id: "prod-4", name: "Mega Puff Jetable", price: "14.99 $", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-vape-smoke-gadget-standing-yellow-wall_231208-3681.jpg", imageAlt: "Stylo Vape Jetable Mega Puff"},
|
||||
{
|
||||
id: "prod-5", name: "Pack de Bobines en Céramique", price: "12.99 $", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-camcorder-with-swirl-film-stripes-blue-backdrop_23-2148188235.jpg", imageAlt: "Pack de bobines de vape en céramique"},
|
||||
{
|
||||
id: "prod-6", name: "Chargeur Double Baie", price: "24.99 $", imageSrc: "http://img.b2bpic.net/free-photo/blood-samples-test-tube-rack_53876-95052.jpg", imageAlt: "Chargeur de batterie de vape double baie"},
|
||||
]}
|
||||
title="Produits Phares"
|
||||
description="Découvrez nos appareils de vape les mieux notés, nos délicieux e-liquides et nos accessoires essentiels, sélectionnés pour leur qualité et leurs performances."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
animationType="scale-rotate"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "starter-kit", badge: "Idéal pour Débutants", badgeIcon: Sparkles,
|
||||
price: "69.99 $", name: "Kit Vapoteur Débutant", buttons: [
|
||||
{
|
||||
text: "Commencer"},
|
||||
],
|
||||
features: [
|
||||
"Appareil Pod System", "2 Saveurs d'E-liquide", "Pods Supplémentaires", "Guide du Débutant"],
|
||||
},
|
||||
{
|
||||
id: "enthusiast-bundle", badge: "Meilleur Rapport Qualité-prix", badgeIcon: Award,
|
||||
price: "149.99 $", name: "Pack Pro Enthusiast", buttons: [
|
||||
{
|
||||
text: "Mettre à Niveau Maintenant"},
|
||||
],
|
||||
features: [
|
||||
"Kit Mod Avancé", "4 E-liquides Premium", "Bobines et Batteries Supplémentaires", "Guide Utilisateur Avancé"],
|
||||
},
|
||||
{
|
||||
id: "flavor-explorer", badge: "Aventure de Saveurs", badgeIcon: Star,
|
||||
price: "49.99 $", name: "Pack Explorateur de Saveurs", buttons: [
|
||||
{
|
||||
text: "Découvrir les Saveurs"},
|
||||
],
|
||||
features: [
|
||||
"5 Saveurs d'E-liquide Assorties", "Pack Échantillon", "Guide de Profil de Saveur", "Réductions Exclusives"],
|
||||
},
|
||||
]}
|
||||
title="Packs Vape Exclusifs"
|
||||
description="Améliorez votre expérience de vapotage avec nos packs spécialement conçus, offrant une valeur et une commodité exceptionnelles."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
@@ -213,17 +147,7 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"VaporTech Innovations", "Elite Mods Inc.", "FlavorCraft Labs", "PodMaster Solutions", "CoilGenius Manufacturing", "BatteryPro Essentials", "Global Vape Supply"]}
|
||||
title="Nos Partenaires de Marque de Confiance"
|
||||
description="Nous sommes fiers de nous associer aux noms leaders de l'industrie de la vape pour vous offrir uniquement les produits de la plus haute qualité et les plus fiables."
|
||||
showCard={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
@@ -275,8 +199,6 @@ export default function LandingPage() {
|
||||
items: [
|
||||
{
|
||||
label: "Accueil", href: "#home"},
|
||||
{
|
||||
label: "Produits", href: "#products"},
|
||||
{
|
||||
label: "Fonctionnalités", href: "#features"},
|
||||
],
|
||||
@@ -308,4 +230,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user