Compare commits
108 Commits
version_28
...
version_52
| Author | SHA1 | Date | |
|---|---|---|---|
| 4b2efebfd1 | |||
| d5b35cd7be | |||
| fb8b2702e5 | |||
| d11de498cc | |||
| 0246cf064d | |||
| 5c85e960ef | |||
| 2fabb18437 | |||
| 434c24831b | |||
| 70b4e6f006 | |||
| 3c5e28d328 | |||
| 8f57187b3c | |||
| 3d871b5b29 | |||
| 0e1f6a2ec9 | |||
| 9d4a065fc8 | |||
| aa41639fe7 | |||
| 4fb704e7ee | |||
| 7c2558edae | |||
| f7e81683dd | |||
| 095370909a | |||
| 0755c8abbf | |||
| 1186e76532 | |||
| be055c02cc | |||
| bb4a101439 | |||
| 7aa0134741 | |||
| ae6c453a9c | |||
| c784904728 | |||
| c8d2e1be88 | |||
| 7ce05b5b8a | |||
| bfc502daf7 | |||
| d89fa229c7 | |||
| a106d8ebdd | |||
| f01dc720fa | |||
| 6f764786db | |||
| 11fc414d8b | |||
| 52923ea725 | |||
| 302ea0620d | |||
| 306c76120f | |||
| aefb8c99d9 | |||
| 50de777115 | |||
| 453183177d | |||
| 56623eaf04 | |||
| ebe32e750a | |||
| 6eb8a7b287 | |||
| 16d64fa460 | |||
| 59f3f8ff13 | |||
| 7cb338eec8 | |||
| d46a89ec8f | |||
| 1a34b7f490 | |||
| 642437766e | |||
| d452b58cb2 | |||
| 437de662f5 | |||
| ef1f9cd321 | |||
| 07c0db0ff7 | |||
| 282bd88284 | |||
| c2e7acb9e9 | |||
| 3819a4d2ee | |||
| 05ef2bebcb | |||
| d8614a9a34 | |||
| 1c79c73caa | |||
| 719af84fe3 | |||
| c6c1dfe7d3 | |||
| f54ce309ab | |||
| 8871c24336 | |||
| 7644ca489e | |||
| 81a30c98df | |||
| f28d25b5c4 | |||
| 22d4800cfe | |||
| 9f27ce678d | |||
| 8b68c5fee1 | |||
| dccb4e816e | |||
| 6fdc906281 | |||
| 8a0ae3a429 | |||
| 1ee333ec53 | |||
| 6708ab9dda | |||
| 2004e4beb1 | |||
| 10bd348011 | |||
| 5bc9a34210 | |||
| ee0e0d3cd5 | |||
| 020cc53fea | |||
| c1058ab901 | |||
| 692d3feb5e | |||
| cbb261022f | |||
| 80ad9bbc90 | |||
| ae527b8494 | |||
| dd8a7c96db | |||
| 0d7796f5c0 | |||
| 1483354222 | |||
| 52e9dccf91 | |||
| 89dfd757d4 | |||
| cdd993aee0 | |||
| 6006a0c895 | |||
| b3af744e87 | |||
| 27848dfc81 | |||
| 1bdaccb998 | |||
| 84d1fe2eaa | |||
| 89a124f949 | |||
| 9625e210f4 | |||
| 2089b188d4 | |||
| 0d8a567675 | |||
| c2e667bfb8 | |||
| bbd4130d04 | |||
| 1e8472fc01 | |||
| 3e14daae4e | |||
| 70b0fb878b | |||
| b990e3d931 | |||
| 800f02c04d | |||
| 83a41d7e9f | |||
| 2899d5b371 |
@@ -4,7 +4,6 @@ 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 (
|
||||
@@ -24,28 +23,18 @@ export default function ComparisonPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Switzerweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Réalisations", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "À Propos", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Features Comparison", id: "/comparison" },
|
||||
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
]}
|
||||
button={{ text: "Démarrer", href: "#contact" }}
|
||||
/>
|
||||
<div id="features-comparison" className="pt-32 pb-20">
|
||||
<PricingCardEight
|
||||
title="Features Comparison"
|
||||
description="Compare our plans and choose the perfect fit for your digital growth."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "basic", badge: "Essential", price: "$49", subtitle: "For growing brands", features: ["SEO Optimization", "Web Development", "Standard Support"], buttons: [{ text: "Get Started", href: "#" }] },
|
||||
{ id: "pro", badge: "Professional", price: "$99", subtitle: "For established businesses", features: ["Everything in Basic", "Advanced Analytics", "24/7 Priority Support", "Custom UI/UX"], buttons: [{ text: "Choose Pro", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
<div className="pt-32 pb-20 text-center">
|
||||
<h1 className="text-4xl font-medium">Page vide</h1>
|
||||
<p className="mt-4">Les sections ont été retirées comme demandé.</p>
|
||||
</div>
|
||||
<FooterBase
|
||||
logoText="Switzerweb"
|
||||
|
||||
96
src/app/contact/page.tsx
Normal file
96
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,96 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import { Zap, ShieldCheck, Headphones } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
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>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Switzerweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Réalisations", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "À Propos", id: "about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Tarifs", id: "pricing" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-32 pb-20">
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactSplitForm
|
||||
title="Parlons de votre projet"
|
||||
description="Nous sommes à votre écoute pour concevoir la solution digitale qui correspond à vos ambitions."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973153-laldct7r.png"
|
||||
mediaPosition="right"
|
||||
useInvertedBackground={false}
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Votre nom" },
|
||||
{ name: "email", type: "email", placeholder: "Votre email" }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Décrivez votre projet...", rows: 6 }}
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyFive
|
||||
title="Pourquoi nous choisir ?"
|
||||
description="Une approche humaine et technique pour garantir le succès de vos projets numériques."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Transparence totale", description: "Communication claire à chaque étape du projet", icon: ShieldCheck, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973154-pr2fgbou.png?_wi=1" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973154-pr2fgbou.png?_wi=2" }] },
|
||||
{ title: "Délais respectés", description: "Livraison rapide et conforme à vos attentes", icon: Zap, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973154-pr2fgbou.png?_wi=3" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973154-pr2fgbou.png?_wi=4" }] },
|
||||
{ title: "Accompagnement", description: "Disponibilité et support personnalisé", icon: Headphones, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973154-pr2fgbou.png?_wi=5" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973154-pr2fgbou.png?_wi=6" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Questions fréquentes"
|
||||
description="Besoin d'informations supplémentaires sur notre manière de travailler ?"
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "f1", title: "Quels sont vos délais ?", content: "Nous adaptons nos délais à la complexité de votre projet, avec une moyenne de 4 à 8 semaines." },
|
||||
{ id: "f2", title: "Comment se passe le paiement ?", content: "Un acompte est demandé au démarrage, suivi d'un solde à la livraison finale." },
|
||||
{ id: "f3", title: "Assurez-vous la maintenance ?", content: "Oui, nous proposons des packs de maintenance mensuels pour assurer la pérennité de votre site." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Switzerweb"
|
||||
columns={[
|
||||
{ items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "/contact" }] },
|
||||
{ items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
117
src/app/page.tsx
117
src/app/page.tsx
@@ -8,11 +8,9 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
||||
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 TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
|
||||
|
||||
export default function WebAgency2Page() {
|
||||
@@ -25,7 +23,7 @@ export default function WebAgency2Page() {
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
@@ -33,13 +31,14 @@ export default function WebAgency2Page() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Switzerweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Réalisations", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "À Propos", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Tarifs", id: "pricing" }
|
||||
]}
|
||||
button={{ text: "Démarrer", href: "#contact" }}
|
||||
button={{ text: "Démarrer", href: "/contact" }}
|
||||
/>
|
||||
<HeroOverlayTestimonial
|
||||
title="Innovation Digitale & Excellence Créative"
|
||||
@@ -76,6 +75,23 @@ export default function WebAgency2Page() {
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials">
|
||||
<TestimonialCardSix
|
||||
title="Témoignages Clients"
|
||||
description="Ce que nos clients disent de notre expertise."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
topMarqueeDirection="left"
|
||||
speed={30}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sophie L.", handle: "@sophie", testimonial: "Une transformation totale de notre identité visuelle. Résultat sublime." },
|
||||
{ id: "t2", name: "Marc P.", handle: "@marc", testimonial: "Professionnalisme et rapidité au rendez-vous. Je recommande vivement." },
|
||||
{ id: "t3", name: "Julie M.", handle: "@julie", testimonial: "Le SEO a clairement fait décoller nos ventes en quelques mois." },
|
||||
{ id: "t4", name: "Lucas D.", handle: "@lucas", testimonial: "Une équipe de choc pour des résultats concrets." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="work">
|
||||
<FeatureCardTwentySix
|
||||
title="Nos Projets"
|
||||
@@ -93,62 +109,29 @@ export default function WebAgency2Page() {
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="features-comparison">
|
||||
<PricingCardEight
|
||||
title="Features Comparison"
|
||||
description="Compare our plans and choose the perfect fit for your digital growth."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "basic", badge: "Essential", price: "$49", subtitle: "For growing brands", features: ["SEO Optimization", "Web Development", "Standard Support"], buttons: [{ text: "Get Started", href: "#" }] },
|
||||
{ id: "pro", badge: "Professional", price: "$99", subtitle: "For established businesses", features: ["Everything in Basic", "Advanced Analytics", "24/7 Priority Support", "Custom UI/UX"], buttons: [{ text: "Choose Pro", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="pricing">
|
||||
<PricingCardThree
|
||||
title="Nos Plans Tarifaires"
|
||||
description="Choisissez l'offre qui propulsera votre projet vers le succès."
|
||||
title="Nos Tarifs"
|
||||
description="La qualité Apple, la puissance du Web."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
textboxLayout="split-description"
|
||||
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: "#" }] }
|
||||
{
|
||||
id: "one-page", price: "250 CHF", name: "Site One Page", buttons: [{ text: "Démarrer", href: "/contact" }],
|
||||
features: ["SEO de base", "Performance optimisée", "Responsive sur mobile"]
|
||||
},
|
||||
{
|
||||
id: "multi-pages", price: "1350 CHF", name: "Multi-pages", badge: "Populaire", badgeIcon: CheckCircle, buttons: [{ text: "Choisir", href: "/contact" }],
|
||||
features: ["Architecture multi-pages", "Gestion de contenu (CMS)", "SEO Avancé", "Formulaires complexes"]
|
||||
},
|
||||
{
|
||||
id: "personnalise", price: "Sur devis", name: "Sur-mesure", buttons: [{ text: "Parlons-en", href: "/contact" }],
|
||||
features: ["Développement spécifique", "Support prioritaire", "Intégration API", "Monitoring 24/7"]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</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"
|
||||
description="Ce que nos clients disent de nous."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
kpiItems={[
|
||||
{ value: "50+", label: "Clients satisfaits" },
|
||||
{ value: "120", label: "Projets livrés" },
|
||||
{ value: "15", label: "Récompenses" },
|
||||
]}
|
||||
testimonials={[
|
||||
{ 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", 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
|
||||
title="Approuvé par les leaders du secteur"
|
||||
description="Des années d'expérience dans la création de produits numériques orientés résultats."
|
||||
@@ -161,22 +144,24 @@ export default function WebAgency2Page() {
|
||||
{ id: "satisfaction", value: "99%", title: "Satisfaction", description: "Taux de satisfaction client", icon: Users },
|
||||
]}
|
||||
/>
|
||||
<ContactCTA
|
||||
tag="Entrer en contact"
|
||||
title="Prêt à transformer votre présence numérique ?"
|
||||
description="Construisons quelque chose d'extraordinaire ensemble. Contactez-nous pour discuter de votre projet."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
buttons={[
|
||||
{ text: "Lancer votre projet", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<div id="contact">
|
||||
<ContactCTA
|
||||
tag="Entrer en contact"
|
||||
title="Prêt à transformer votre présence numérique ?"
|
||||
description="Construisons quelque chose d'extraordinaire ensemble. Contactez-nous pour discuter de votre projet."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
buttons={[
|
||||
{ text: "Lancer votre projet", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterBase
|
||||
logoText="Switzerweb"
|
||||
copyrightText="© 2026 | Switzerweb"
|
||||
columns={[
|
||||
{ title: "Entreprise", items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
|
||||
{ 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: "#" }] },
|
||||
]}
|
||||
/>
|
||||
|
||||
68
src/app/pricing-highlighted-cards/page.tsx
Normal file
68
src/app/pricing-highlighted-cards/page.tsx
Normal file
@@ -0,0 +1,68 @@
|
||||
"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 PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
|
||||
import { CheckCircle } from "lucide-react";
|
||||
|
||||
export default function PricingHighlightedCardsPage() {
|
||||
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: "Home", id: "/" },
|
||||
{ name: "Réalisations", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "À Propos", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
]}
|
||||
button={{ text: "Démarrer", href: "#contact" }}
|
||||
/>
|
||||
<div id="pricing-highlighted-cards" className="pt-32 pb-20">
|
||||
<PricingCardTwo
|
||||
title="Nos Tarifs"
|
||||
description="Des solutions adaptées à vos besoins avec des options premium."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "standard", badge: "Basic", price: "$99", subtitle: "Parfait pour démarrer", features: ["SEO de base", "Design Réactif", "Support Email"],
|
||||
buttons: [{ text: "Choisir", href: "#" }]
|
||||
},
|
||||
{
|
||||
id: "highlighted", badge: "Populaire", badgeIcon: CheckCircle,
|
||||
price: "$199", subtitle: "Pour booster votre croissance", features: ["Tout le pack Basic", "SEO Avancé", "Analytics", "Support Prioritaire"],
|
||||
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>
|
||||
);
|
||||
}
|
||||
@@ -25,13 +25,12 @@ export default function PricingHighlightedPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Switzerweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Réalisations", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "À Propos", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Features Comparison", id: "/comparison" },
|
||||
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
]}
|
||||
button={{ text: "Démarrer", href: "#contact" }}
|
||||
/>
|
||||
|
||||
@@ -24,15 +24,14 @@ export default function PricingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Switzerweb"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Réalisations", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "À Propos", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Features Comparison", id: "/comparison" },
|
||||
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
]}
|
||||
button={{ text: "Démarrer", href: "#contact" }}
|
||||
button={{ text: "Démarrer", href: "/contact" }}
|
||||
/>
|
||||
<div id="pricing" className="pt-32 pb-20">
|
||||
<PricingCardThree
|
||||
@@ -42,9 +41,9 @@ export default function PricingPage() {
|
||||
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: "#" }] }
|
||||
{ id: "starter", price: "$49", name: "Starter", features: ["SEO de base", "Design Réactif", "Maintenance Mensuelle"], buttons: [{ text: "Démarrer", href: "/contact" }] },
|
||||
{ id: "growth", price: "$99", name: "Growth", features: ["SEO Avancé", "Stratégie Digitale", "Support 24/7", "Analytique"], buttons: [{ text: "Choisir", href: "/contact" }] },
|
||||
{ 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: "/contact" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -52,7 +51,7 @@ export default function PricingPage() {
|
||||
logoText="Switzerweb"
|
||||
copyrightText="© 2026 | Switzerweb"
|
||||
columns={[
|
||||
{ title: "Entreprise", items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
|
||||
{ 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: "#" }] },
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user