Compare commits

...

16 Commits

Author SHA1 Message Date
ef1f9cd321 Update src/app/page.tsx 2026-05-15 17:23:48 +00:00
282bd88284 Update src/app/page.tsx 2026-05-15 17:23:18 +00:00
c2e7acb9e9 Merge version_39 into main
Merge version_39 into main
2026-05-15 17:18:27 +00:00
3819a4d2ee Update src/app/page.tsx 2026-05-15 17:18:21 +00:00
05ef2bebcb Merge version_39 into main
Merge version_39 into main
2026-05-15 17:17:54 +00:00
d8614a9a34 Update src/app/page.tsx 2026-05-15 17:17:48 +00:00
1c79c73caa Switch to version 37: modified src/app/page.tsx 2026-05-15 17:15:32 +00:00
719af84fe3 Merge version_38 into main
Merge version_38 into main
2026-05-15 16:52:58 +00:00
c6c1dfe7d3 Update src/app/page.tsx 2026-05-15 16:52:55 +00:00
f54ce309ab Merge version_38 into main
Merge version_38 into main
2026-05-15 16:52:30 +00:00
8871c24336 Update src/app/page.tsx 2026-05-15 16:52:27 +00:00
7644ca489e Merge version_38 into main
Merge version_38 into main
2026-05-15 16:52:04 +00:00
81a30c98df Update src/app/page.tsx 2026-05-15 16:52:01 +00:00
f28d25b5c4 Merge version_38 into main
Merge version_38 into main
2026-05-15 16:51:37 +00:00
22d4800cfe Update src/app/page.tsx 2026-05-15 16:51:34 +00:00
9f27ce678d Merge version_37 into main
Merge version_37 into main
2026-05-15 16:50:19 +00:00

View File

@@ -10,8 +10,8 @@ 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 PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import { Sparkles, Search, Award, Users, ArrowRight, Smartphone, LayoutGrid, Palette } from "lucide-react";
export default function WebAgency2Page() {
return (
@@ -23,7 +23,7 @@ export default function WebAgency2Page() {
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="metallic"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
@@ -36,7 +36,7 @@ export default function WebAgency2Page() {
{ name: "Services", id: "services" },
{ name: "À Propos", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Pricing", id: "pricing" }
{ name: "Tarifs", id: "pricing" }
]}
button={{ text: "Démarrer", href: "#contact" }}
/>
@@ -93,21 +93,24 @@ export default function WebAgency2Page() {
/>
</div>
<div id="pricing">
<PricingCardTwo
<PricingCardThree
title="Nos Tarifs"
description="Des solutions adaptées à vos besoins avec des options premium."
description="La qualité Apple, la puissance du Web."
animationType="slide-up"
textboxLayout="default"
textboxLayout="split-description"
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: "one-page", price: "250 CHF", name: "Site One Page", buttons: [{ text: "Démarrer", href: "#contact" }],
features: ["Design épuré type Apple", "Performance optimisée", "Responsive sur mobile"]
},
{
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: "#" }]
id: "multi-pages", price: "1350 CHF", name: "Multi-pages", 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"]
}
]}
/>
@@ -165,4 +168,4 @@ export default function WebAgency2Page() {
</ReactLenis>
</ThemeProvider>
);
}
}