Compare commits

..

43 Commits

Author SHA1 Message Date
3c5e28d328 Update src/app/page.tsx 2026-05-15 17:39:51 +00:00
8f57187b3c Merge version_49 into main
Merge version_49 into main
2026-05-15 17:38:14 +00:00
3d871b5b29 Update src/app/contact/page.tsx 2026-05-15 17:38:11 +00:00
0e1f6a2ec9 Merge version_49 into main
Merge version_49 into main
2026-05-15 17:37:50 +00:00
9d4a065fc8 Update src/app/pricing/page.tsx 2026-05-15 17:37:47 +00:00
aa41639fe7 Update src/app/page.tsx 2026-05-15 17:37:46 +00:00
4fb704e7ee Add src/app/contact/page.tsx 2026-05-15 17:37:46 +00:00
7c2558edae Merge version_48 into main
Merge version_48 into main
2026-05-15 17:36:38 +00:00
f7e81683dd Update src/app/page.tsx 2026-05-15 17:36:34 +00:00
095370909a Merge version_47 into main
Merge version_47 into main
2026-05-15 17:35:45 +00:00
0755c8abbf Update src/app/page.tsx 2026-05-15 17:35:42 +00:00
1186e76532 Merge version_46 into main
Merge version_46 into main
2026-05-15 17:34:52 +00:00
be055c02cc Update src/app/page.tsx 2026-05-15 17:34:46 +00:00
bb4a101439 Merge version_46 into main
Merge version_46 into main
2026-05-15 17:34:20 +00:00
7aa0134741 Update src/app/page.tsx 2026-05-15 17:34:17 +00:00
ae6c453a9c Switch to version 43: modified src/app/page.tsx 2026-05-15 17:33:20 +00:00
c784904728 Switch to version 44: modified src/app/page.tsx 2026-05-15 17:33:16 +00:00
c8d2e1be88 Merge version_45 into main
Merge version_45 into main
2026-05-15 17:32:33 +00:00
7ce05b5b8a Update src/app/page.tsx 2026-05-15 17:32:30 +00:00
bfc502daf7 Merge version_45 into main
Merge version_45 into main
2026-05-15 17:32:07 +00:00
d89fa229c7 Update src/app/page.tsx 2026-05-15 17:32:01 +00:00
a106d8ebdd Merge version_44 into main
Merge version_44 into main
2026-05-15 17:31:07 +00:00
f01dc720fa Update src/app/page.tsx 2026-05-15 17:31:03 +00:00
6f764786db Merge version_44 into main
Merge version_44 into main
2026-05-15 17:30:36 +00:00
11fc414d8b Update src/app/page.tsx 2026-05-15 17:30:33 +00:00
52923ea725 Merge version_44 into main
Merge version_44 into main
2026-05-15 17:30:04 +00:00
302ea0620d Update src/app/page.tsx 2026-05-15 17:29:58 +00:00
306c76120f Merge version_44 into main
Merge version_44 into main
2026-05-15 17:29:29 +00:00
aefb8c99d9 Update src/app/page.tsx 2026-05-15 17:29:23 +00:00
50de777115 Merge version_44 into main
Merge version_44 into main
2026-05-15 17:28:56 +00:00
453183177d Update src/app/page.tsx 2026-05-15 17:28:53 +00:00
56623eaf04 Merge version_44 into main
Merge version_44 into main
2026-05-15 17:28:27 +00:00
ebe32e750a Update src/app/page.tsx 2026-05-15 17:28:24 +00:00
6eb8a7b287 Merge version_43 into main
Merge version_43 into main
2026-05-15 17:26:40 +00:00
16d64fa460 Update src/app/page.tsx 2026-05-15 17:26:34 +00:00
59f3f8ff13 Merge version_43 into main
Merge version_43 into main
2026-05-15 17:26:08 +00:00
7cb338eec8 Update src/app/page.tsx 2026-05-15 17:26:05 +00:00
d46a89ec8f Merge version_42 into main
Merge version_42 into main
2026-05-15 17:25:24 +00:00
1a34b7f490 Update src/app/page.tsx 2026-05-15 17:25:18 +00:00
642437766e Merge version_41 into main
Merge version_41 into main
2026-05-15 17:24:38 +00:00
d452b58cb2 Update src/app/page.tsx 2026-05-15 17:24:35 +00:00
437de662f5 Merge version_40 into main
Merge version_40 into main
2026-05-15 17:23:54 +00:00
07c0db0ff7 Merge version_40 into main
Merge version_40 into main
2026-05-15 17:23:21 +00:00
3 changed files with 90 additions and 33 deletions

57
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,57 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBase from "@/components/sections/footer/FooterBase";
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>
<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: "Tarifs", id: "pricing" }
]}
button={{ text: "Démarrer", href: "/contact" }}
/>
<div className="pt-32 pb-20">
<ContactSplit
title="Parlons de votre projet"
description="Nous sommes à votre écoute pour concevoir la solution digitale qui correspond à vos ambitions."
tag="Contact"
background={{ variant: "rotated-rays-animated" }}
mediaPosition="right"
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: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -8,10 +8,10 @@ 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 PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import { Sparkles, Search, Award, Users, ArrowRight, Smartphone, LayoutGrid, Palette } from "lucide-react";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
export default function WebAgency2Page() {
return (
@@ -35,10 +35,10 @@ export default function WebAgency2Page() {
{ 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"
@@ -75,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"
@@ -101,37 +118,20 @@ export default function WebAgency2Page() {
useInvertedBackground={false}
plans={[
{
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: "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", buttons: [{ text: "Choisir", href: "#contact" }],
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" }],
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>
<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."
@@ -151,7 +151,7 @@ export default function WebAgency2Page() {
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" },
{ text: "Lancer votre projet", href: "/contact" },
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
@@ -161,7 +161,7 @@ export default function WebAgency2Page() {
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: "#" }] },
]}
/>

View File

@@ -28,10 +28,10 @@ export default function PricingPage() {
{ name: "Réalisations", id: "work" },
{ name: "Services", id: "services" },
{ name: "À Propos", id: "about" },
{ name: "Contact", id: "contact" },
{ 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
@@ -41,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>
@@ -51,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: "#" }] },
]}
/>