Compare commits
55 Commits
version_12
...
version_29
| Author | SHA1 | Date | |
|---|---|---|---|
| 70b0fb878b | |||
| b990e3d931 | |||
| 800f02c04d | |||
| 83a41d7e9f | |||
| 2899d5b371 | |||
| 3d276f7bae | |||
| 0966b31b2b | |||
| 0b81cef451 | |||
| d14f2c5d37 | |||
| a6501fd8b9 | |||
| 7549c60a9e | |||
| 02e36a8a33 | |||
| 1b7d7bd9ee | |||
| 621dda645f | |||
| 683cd0e3ff | |||
| b16fcdf3bf | |||
| 9baf262094 | |||
| 2155a9ce66 | |||
| e13d575f16 | |||
| f1d856a652 | |||
| f18382ca11 | |||
| edc5cc6445 | |||
| 1abcc657cf | |||
| 4485b75d1a | |||
| b430a5ebce | |||
| 159fac70e8 | |||
| e9ae83f681 | |||
| 9bdada7ae6 | |||
| 4e731c0df2 | |||
| 5e9086ac4f | |||
| 11a7ba8854 | |||
| cd11cd0bb4 | |||
| 5e10de8bb2 | |||
| c253cc7f29 | |||
| 534a589f25 | |||
| f208212c9f | |||
| 0969ee222c | |||
| 57c7ad01b5 | |||
| d87743e0bd | |||
| 254f5dacc2 | |||
| f14afd6909 | |||
| daddf5fc2c | |||
| c0d6bb03f6 | |||
| 1c93ac553c | |||
| f854f1a758 | |||
| b23b4ff545 | |||
| 737075607c | |||
| aa00820124 | |||
| 6628db4e7b | |||
| 6d317f29cb | |||
| 6bfad29920 | |||
| 55d31a3e7d | |||
| 8f71879be6 | |||
| 320777f3a4 | |||
| f617353590 |
61
src/app/comparison/page.tsx
Normal file
61
src/app/comparison/page.tsx
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
||||||
|
|
||||||
|
export default function ComparisonPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Switzerweb"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Réalisations", id: "work" },
|
||||||
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "À Propos", id: "about" },
|
||||||
|
{ name: "Contact", id: "contact" },
|
||||||
|
{ name: "Pricing", id: "/pricing" },
|
||||||
|
{ name: "Nos Offres", id: "/comparison" },
|
||||||
|
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
||||||
|
]}
|
||||||
|
button={{ text: "Démarrer", href: "#contact" }}
|
||||||
|
/>
|
||||||
|
<div id="features-comparison" className="pt-32 pb-20">
|
||||||
|
<PricingCardEight
|
||||||
|
title="Nos Offres"
|
||||||
|
description="Découvrez nos différentes options conçues pour propulser votre croissance digitale."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
plans={[
|
||||||
|
{ id: "basic", badge: "Essentiel", price: "$49", subtitle: "Pour les marques en croissance", features: ["SEO Optimisé", "Développement Web", "Support Standard"], buttons: [{ text: "Démarrer", href: "#" }] },
|
||||||
|
{ id: "pro", badge: "Professionnel", price: "$99", subtitle: "Pour les entreprises établies", features: ["Tout le pack Essentiel", "Analyses Avancées", "Support Prioritaire 24/7", "UI/UX Sur-mesure"], buttons: [{ text: "Choisir", href: "#" }] }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterBase
|
||||||
|
logoText="Switzerweb"
|
||||||
|
copyrightText="© 2026 | Switzerweb"
|
||||||
|
columns={[
|
||||||
|
{ title: "Entreprise", items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
|
||||||
|
{ title: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
123
src/app/page.tsx
123
src/app/page.tsx
@@ -3,17 +3,17 @@
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
|
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
|
||||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
|
||||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||||
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
|
||||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
||||||
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
|
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
||||||
|
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||||
|
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
||||||
|
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
export default function WebAgency2Page() {
|
export default function WebAgency2Page() {
|
||||||
return (
|
return (
|
||||||
@@ -37,31 +37,23 @@ export default function WebAgency2Page() {
|
|||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "À Propos", id: "about" },
|
{ name: "À Propos", id: "about" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
|
{ name: "Tarifs", id: "pricing" },
|
||||||
|
{ name: "Offres", id: "/comparison" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
<HeroSplitDoubleCarousel
|
<HeroOverlayTestimonial
|
||||||
title="Two Services Maximum Impact"
|
title="Innovation Digitale & Excellence Créative"
|
||||||
description="We deliver focused expertise in our core offerings, eliminating distractions so you get results faster Clarity drives success"
|
description="Nous transformons vos visions en solutions numériques percutantes. Une approche axée sur les résultats, reconnue par les meilleurs standards du marché."
|
||||||
tag="Agence Primée"
|
tag="Agence Primée"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "canvas-reveal" }}
|
testimonials={[
|
||||||
buttons={[
|
{ name: "Maria Santos", handle: "@luxuriatravel", testimonial: "Un travail exceptionnel, une équipe réactive et des résultats au-delà de mes espérances.", rating: 5 },
|
||||||
{ text: "Explore Our Services", href: "#services" },
|
{ name: "John Doe", handle: "@johndoe", testimonial: "Le partenaire idéal pour booster notre visibilité en ligne.", rating: 5 },
|
||||||
{ text: "Voir nos Réalisations", href: "#work" },
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778862157558-53z96op4.png"
|
||||||
carouselPosition="right"
|
buttons={[{ text: "View Our Projects", href: "#work" }]}
|
||||||
leftCarouselItems={[
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687704099-pawini9k.png?_wi=1", imageAlt: "Projet 1" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687704099-z8ttb3x3.png?_wi=1", imageAlt: "Projet 2" },
|
|
||||||
]}
|
|
||||||
rightCarouselItems={[
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687704099-xqyy35cv.png?_wi=2", imageAlt: "Projet 3" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687704099-kuuxuq0p.png?_wi=2", imageAlt: "Projet 4" },
|
|
||||||
]}
|
|
||||||
carouselItemClassName="!aspect-[4/5]"
|
|
||||||
/>
|
/>
|
||||||
<div id="services">
|
<div id="services">
|
||||||
<FeatureBento
|
<FeatureBento
|
||||||
@@ -85,28 +77,77 @@ export default function WebAgency2Page() {
|
|||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<FeatureCardTwentySix
|
<div id="work">
|
||||||
title="Nos Projets"
|
<FeatureCardTwentySix
|
||||||
description="Une sélection de projets que nous avons réalisés pour des clients de tous secteurs."
|
title="Nos Projets"
|
||||||
textboxLayout="default"
|
description="Une sélection de projets que nous avons réalisés pour des clients de tous secteurs."
|
||||||
useInvertedBackground={false}
|
textboxLayout="default"
|
||||||
buttons={[{ text: "Voir tous les projets", href: "#work" }]}
|
useInvertedBackground={false}
|
||||||
buttonAnimation="slide-up"
|
buttons={[{ text: "Voir tous les projets", href: "#work" }]}
|
||||||
cardClassName="!h-auto aspect-video"
|
buttonAnimation="slide-up"
|
||||||
features={[
|
cardClassName="!h-auto aspect-video"
|
||||||
{ title: "Association LeLi", description: "Site à but non lucratif", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687704099-pawini9k.png?_wi=5", imageAlt: "Projet 1", buttonIcon: ArrowUpRight, buttonHref: "#" },
|
features={[
|
||||||
{ title: "Sport Air Event", description: "Site e-commerce", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687704099-z8ttb3x3.png?_wi=5", imageAlt: "Projet 2", buttonIcon: ArrowUpRight, buttonHref: "#" },
|
{ title: "Digital Inflatables Artist", description: "Site portfolio", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778861460221-euyk88uh.png", imageAlt: "Digital Inflatables Artist", buttonHref: "#", buttonIcon: ArrowRight },
|
||||||
]}
|
{ title: "FLEX Studio", description: "Site showcase", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778861460221-khgvbcj0.png", imageAlt: "FLEX Studio", buttonHref: "#", buttonIcon: ArrowRight },
|
||||||
/>
|
{ title: "Sport Air Event", description: "Site e-commerce", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778861460221-f0q6iebc.png", imageAlt: "Sport Air Event", buttonHref: "#", buttonIcon: ArrowRight },
|
||||||
<TestimonialCardSix
|
{ title: "Association LeLi", description: "Site non-profit", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778861460221-vobfgdq4.png", imageAlt: "Association LeLi", buttonHref: "#", buttonIcon: ArrowRight },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="offers">
|
||||||
|
<PricingCardEight
|
||||||
|
title="Nos Offres"
|
||||||
|
description="Découvrez nos différentes options conçues pour propulser votre croissance digitale."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
plans={[
|
||||||
|
{ id: "basic", badge: "Essentiel", price: "$49", subtitle: "Pour les marques en croissance", features: ["SEO Optimisé", "Développement Web", "Support Standard"], buttons: [{ text: "Démarrer", href: "#" }] },
|
||||||
|
{ id: "pro", badge: "Professionnel", price: "$99", subtitle: "Pour les entreprises établies", features: ["Tout le pack Essentiel", "Analyses Avancées", "Support Prioritaire 24/7", "UI/UX Sur-mesure"], buttons: [{ text: "Choisir", href: "#" }] }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="pricing">
|
||||||
|
<PricingCardThree
|
||||||
|
title="Nos Plans Tarifaires"
|
||||||
|
description="Choisissez l'offre qui propulsera votre projet vers le succès."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
plans={[
|
||||||
|
{ id: "starter", price: "$49", name: "Starter", features: ["SEO de base", "Design Réactif", "Maintenance Mensuelle"], buttons: [{ text: "Démarrer", href: "#" }] },
|
||||||
|
{ id: "growth", price: "$99", name: "Growth", features: ["SEO Avancé", "Stratégie Digitale", "Support 24/7", "Analytique"], buttons: [{ text: "Choisir", href: "#" }] },
|
||||||
|
{ id: "pro", price: "$199", name: "Pro", features: ["Tout le pack Growth", "UI/UX Personnalisé", "Gestionnaire Dédié", "Performance Optimisée"], buttons: [{ text: "Passer au niveau supérieur", href: "#" }] }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="pricing-highlighted">
|
||||||
|
<PricingCardOne
|
||||||
|
title="Pricing Plans"
|
||||||
|
description="Premium plans with highlighted features."
|
||||||
|
animationType="depth-3d"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
plans={[
|
||||||
|
{ id: "pro", badge: "Highlighted", badgeIcon: CheckCircle, price: "$199", subtitle: "Best value plan", features: ["Everything in standard", "Dedicated support", "Custom analytics", "Unlimited projects"] }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<TestimonialCardSixteen
|
||||||
title="Témoignages"
|
title="Témoignages"
|
||||||
description="Ce que nos clients disent de nous."
|
description="Ce que nos clients disent de nous."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
kpiItems={[
|
||||||
|
{ value: "50+", label: "Clients satisfaits" },
|
||||||
|
{ value: "120", label: "Projets livrés" },
|
||||||
|
{ value: "15", label: "Récompenses" },
|
||||||
|
]}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{ id: "1", name: "Maria Santos", handle: "@luxuriatravel", testimonial: "Switzerweb a totalement transformé notre présence en ligne. L'équipe a livré un site magnifique qui a dépassé nos attentes.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687957597-xmzcujf9.png" },
|
{ id: "1", name: "Maria Santos", role: "Travel Enthusiast", company: "@luxuriatravel", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687957597-xmzcujf9.png" },
|
||||||
{ id: "2", name: "John Doe", handle: "@johndoe", testimonial: "Service exceptionnel et résultats concrets dès le lancement. Je recommande vivement.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687957597-dqsdv4cu.png" },
|
{ id: "2", name: "John Doe", role: "Founder", company: "@johndoe", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778687957597-dqsdv4cu.png" },
|
||||||
|
{ id: "3", name: "Alice Martin", role: "Director", company: "@alicem", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778861971260-9nz6av8u.png" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<MetricCardOne
|
<MetricCardOne
|
||||||
|
|||||||
61
src/app/pricing-highlighted/page.tsx
Normal file
61
src/app/pricing-highlighted/page.tsx
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
||||||
|
import { CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
|
export default function PricingHighlightedPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Switzerweb"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Réalisations", id: "work" },
|
||||||
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "À Propos", id: "about" },
|
||||||
|
{ name: "Contact", id: "contact" },
|
||||||
|
{ name: "Pricing", id: "/pricing" },
|
||||||
|
{ name: "Nos Offres", id: "/comparison" },
|
||||||
|
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
||||||
|
]}
|
||||||
|
button={{ text: "Démarrer", href: "#contact" }}
|
||||||
|
/>
|
||||||
|
<div id="pricing-highlighted" className="pt-32 pb-20">
|
||||||
|
<PricingCardOne
|
||||||
|
title="Pricing Plans"
|
||||||
|
description="Premium plans with highlighted features."
|
||||||
|
animationType="depth-3d"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
plans={[
|
||||||
|
{ id: "pro", badge: "Highlighted", badgeIcon: CheckCircle, price: "$199", subtitle: "Best value plan", features: ["Everything in standard", "Dedicated support", "Custom analytics", "Unlimited projects"] }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterBase
|
||||||
|
logoText="Switzerweb"
|
||||||
|
copyrightText="© 2026 | Switzerweb"
|
||||||
|
columns={[
|
||||||
|
{ title: "Entreprise", items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
|
||||||
|
{ title: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
62
src/app/pricing/page.tsx
Normal file
62
src/app/pricing/page.tsx
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||||
|
|
||||||
|
export default function PricingPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Switzerweb"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Réalisations", id: "work" },
|
||||||
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "À Propos", id: "about" },
|
||||||
|
{ name: "Contact", id: "contact" },
|
||||||
|
{ name: "Pricing", id: "/pricing" },
|
||||||
|
{ name: "Nos Offres", id: "/comparison" },
|
||||||
|
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
||||||
|
]}
|
||||||
|
button={{ text: "Démarrer", href: "#contact" }}
|
||||||
|
/>
|
||||||
|
<div id="pricing" className="pt-32 pb-20">
|
||||||
|
<PricingCardThree
|
||||||
|
title="Nos Plans Tarifaires"
|
||||||
|
description="Choisissez l'offre qui propulsera votre projet vers le succès."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
plans={[
|
||||||
|
{ id: "starter", price: "$49", name: "Starter", features: ["SEO de base", "Design Réactif", "Maintenance Mensuelle"], buttons: [{ text: "Démarrer", href: "#" }] },
|
||||||
|
{ id: "growth", price: "$99", name: "Growth", features: ["SEO Avancé", "Stratégie Digitale", "Support 24/7", "Analytique"], buttons: [{ text: "Choisir", href: "#" }] },
|
||||||
|
{ id: "pro", price: "$199", name: "Pro", features: ["Tout le pack Growth", "UI/UX Personnalisé", "Gestionnaire Dédié", "Performance Optimisée"], buttons: [{ text: "Passer au niveau supérieur", href: "#" }] }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterBase
|
||||||
|
logoText="Switzerweb"
|
||||||
|
copyrightText="© 2026 | Switzerweb"
|
||||||
|
columns={[
|
||||||
|
{ title: "Entreprise", items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
|
||||||
|
{ title: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #ffffff;
|
||||||
--card: #161616;
|
--card: #ffffff;
|
||||||
--foreground: #f0f0f0;
|
--foreground: #000612;
|
||||||
--primary-cta: #ffffff;
|
--primary-cta: #ffffff;
|
||||||
--primary-cta-text: #0a0a0a;
|
--primary-cta-text: #0a0a0a;
|
||||||
--secondary-cta: #1e1e1e;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #e0e0e0;
|
--secondary-cta-text: #e0e0e0;
|
||||||
--accent: #d0d0d0;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #9a9a9a;
|
--background-accent: #f9f9f9;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user