Compare commits
51 Commits
version_29
...
version_40
| Author | SHA1 | Date | |
|---|---|---|---|
| ef1f9cd321 | |||
| 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 |
@@ -4,7 +4,6 @@ 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 FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
|
||||||
|
|
||||||
export default function ComparisonPage() {
|
export default function ComparisonPage() {
|
||||||
return (
|
return (
|
||||||
@@ -24,28 +23,18 @@ export default function ComparisonPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Switzerweb"
|
brandName="Switzerweb"
|
||||||
navItems={[
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Réalisations", id: "work" },
|
{ name: "Réalisations", id: "work" },
|
||||||
{ 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: "Pricing", id: "/pricing" },
|
{ name: "Pricing", id: "pricing" }
|
||||||
{ name: "Nos Offres", id: "/comparison" },
|
|
||||||
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
<div id="features-comparison" className="pt-32 pb-20">
|
<div className="pt-32 pb-20 text-center">
|
||||||
<PricingCardEight
|
<h1 className="text-4xl font-medium">Page vide</h1>
|
||||||
title="Nos Offres"
|
<p className="mt-4">Les sections ont été retirées comme demandé.</p>
|
||||||
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>
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Switzerweb"
|
logoText="Switzerweb"
|
||||||
|
|||||||
@@ -10,10 +10,8 @@ import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
|||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
|
||||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||||
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
import { Sparkles, Search, Award, Users, ArrowRight, Smartphone, LayoutGrid, Palette } from "lucide-react";
|
||||||
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
|
|
||||||
|
|
||||||
export default function WebAgency2Page() {
|
export default function WebAgency2Page() {
|
||||||
return (
|
return (
|
||||||
@@ -25,7 +23,7 @@ export default function WebAgency2Page() {
|
|||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="none"
|
background="none"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="metallic"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
@@ -33,12 +31,12 @@ export default function WebAgency2Page() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Switzerweb"
|
brandName="Switzerweb"
|
||||||
navItems={[
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Réalisations", id: "work" },
|
{ name: "Réalisations", id: "work" },
|
||||||
{ 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: "Tarifs", id: "pricing" }
|
||||||
{ name: "Offres", id: "/comparison" }
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
@@ -94,42 +92,26 @@ export default function WebAgency2Page() {
|
|||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</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">
|
<div id="pricing">
|
||||||
<PricingCardThree
|
<PricingCardThree
|
||||||
title="Nos Plans Tarifaires"
|
title="Nos Tarifs"
|
||||||
description="Choisissez l'offre qui propulsera votre projet vers le succès."
|
description="La qualité Apple, la puissance du Web."
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="split-description"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
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: "one-page", price: "250 CHF", name: "Site One Page", buttons: [{ text: "Démarrer", 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: "#" }] }
|
features: ["Design épuré type Apple", "Performance optimisée", "Responsive sur mobile"]
|
||||||
]}
|
},
|
||||||
/>
|
{
|
||||||
</div>
|
id: "multi-pages", price: "1350 CHF", name: "Multi-pages", buttons: [{ text: "Choisir", href: "#contact" }],
|
||||||
<div id="pricing-highlighted">
|
features: ["Architecture multi-pages", "Gestion de contenu (CMS)", "SEO Avancé", "Formulaires complexes"]
|
||||||
<PricingCardOne
|
},
|
||||||
title="Pricing Plans"
|
{
|
||||||
description="Premium plans with highlighted features."
|
id: "personnalise", price: "Sur devis", name: "Sur-mesure", buttons: [{ text: "Parlons-en", href: "#contact" }],
|
||||||
animationType="depth-3d"
|
features: ["Développement spécifique", "Support prioritaire", "Intégration API", "Monitoring 24/7"]
|
||||||
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>
|
</div>
|
||||||
@@ -162,17 +144,19 @@ export default function WebAgency2Page() {
|
|||||||
{ id: "satisfaction", value: "99%", title: "Satisfaction", description: "Taux de satisfaction client", icon: Users },
|
{ id: "satisfaction", value: "99%", title: "Satisfaction", description: "Taux de satisfaction client", icon: Users },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<ContactCTA
|
<div id="contact">
|
||||||
tag="Entrer en contact"
|
<ContactCTA
|
||||||
title="Prêt à transformer votre présence numérique ?"
|
tag="Entrer en contact"
|
||||||
description="Construisons quelque chose d'extraordinaire ensemble. Contactez-nous pour discuter de votre projet."
|
title="Prêt à transformer votre présence numérique ?"
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
description="Construisons quelque chose d'extraordinaire ensemble. Contactez-nous pour discuter de votre projet."
|
||||||
buttons={[
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
{ text: "Lancer votre projet", href: "#contact" },
|
buttons={[
|
||||||
]}
|
{ text: "Lancer votre projet", href: "#contact" },
|
||||||
buttonAnimation="slide-up"
|
]}
|
||||||
useInvertedBackground={false}
|
buttonAnimation="slide-up"
|
||||||
/>
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Switzerweb"
|
logoText="Switzerweb"
|
||||||
copyrightText="© 2026 | Switzerweb"
|
copyrightText="© 2026 | Switzerweb"
|
||||||
@@ -184,4 +168,4 @@ export default function WebAgency2Page() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
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
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Switzerweb"
|
brandName="Switzerweb"
|
||||||
navItems={[
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Réalisations", id: "work" },
|
{ name: "Réalisations", id: "work" },
|
||||||
{ 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: "Pricing", id: "/pricing" },
|
{ name: "Pricing", id: "pricing" }
|
||||||
{ name: "Nos Offres", id: "/comparison" },
|
|
||||||
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -24,13 +24,12 @@ export default function PricingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Switzerweb"
|
brandName="Switzerweb"
|
||||||
navItems={[
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Réalisations", id: "work" },
|
{ name: "Réalisations", id: "work" },
|
||||||
{ 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: "Pricing", id: "/pricing" },
|
{ name: "Pricing", id: "pricing" }
|
||||||
{ name: "Nos Offres", id: "/comparison" },
|
|
||||||
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "#contact" }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user