Compare commits
44 Commits
version_39
...
version_49
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d871b5b29 | |||
| 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 | |||
| 05ef2bebcb |
57
src/app/contact/page.tsx
Normal file
57
src/app/contact/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -8,10 +8,10 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
|
|||||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
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 ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
|
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||||
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle, Smartphone, LayoutGrid, Palette } from "lucide-react";
|
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||||
|
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
export default function WebAgency2Page() {
|
export default function WebAgency2Page() {
|
||||||
return (
|
return (
|
||||||
@@ -35,10 +35,10 @@ export default function WebAgency2Page() {
|
|||||||
{ 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" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<HeroOverlayTestimonial
|
<HeroOverlayTestimonial
|
||||||
title="Innovation Digitale & Excellence Créative"
|
title="Innovation Digitale & Excellence Créative"
|
||||||
@@ -75,6 +75,19 @@ export default function WebAgency2Page() {
|
|||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="testimonials">
|
||||||
|
<TestimonialCardTen
|
||||||
|
title="Témoignages Clients"
|
||||||
|
description="Ce que nos clients disent de notre expertise."
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
testimonials={[
|
||||||
|
{ id: "t1", title: "Excellent", quote: "Une transformation totale de notre identité visuelle. Résultat sublime.", name: "Sophie L.", role: "Fondatrice" },
|
||||||
|
{ id: "t2", title: "Rapide", quote: "Professionnalisme et rapidité au rendez-vous. Je recommande vivement.", name: "Marc P.", role: "Manager" },
|
||||||
|
{ id: "t3", title: "Efficace", quote: "Le SEO a clairement fait décoller nos ventes en quelques mois.", name: "Julie M.", role: "Directrice" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<div id="work">
|
<div id="work">
|
||||||
<FeatureCardTwentySix
|
<FeatureCardTwentySix
|
||||||
title="Nos Projets"
|
title="Nos Projets"
|
||||||
@@ -93,7 +106,7 @@ export default function WebAgency2Page() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="pricing">
|
<div id="pricing">
|
||||||
<PricingCardFive
|
<PricingCardThree
|
||||||
title="Nos Tarifs"
|
title="Nos Tarifs"
|
||||||
description="La qualité Apple, la puissance du Web."
|
description="La qualité Apple, la puissance du Web."
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -101,40 +114,20 @@ export default function WebAgency2Page() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "one-page", tag: "Minimaliste", tagIcon: Smartphone,
|
id: "one-page", price: "250 CHF", name: "Site One Page", buttons: [{ text: "Démarrer", href: "/contact" }],
|
||||||
price: "890€", period: "Forfait unique", description: "Landing page efficace pour maximiser vos conversions immédiates.", button: { text: "Démarrer", href: "#contact" },
|
features: ["SEO de base", "Performance optimisée", "Responsive sur mobile"]
|
||||||
featuresTitle: "Ce qui est inclus :", features: ["Design épuré type Apple", "Performance optimisée", "Intégration Analytics", "Responsive sur mobile"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "multi-pages", tag: "Complet", tagIcon: LayoutGrid,
|
id: "multi-pages", price: "1350 CHF", name: "Multi-pages", badge: "Populaire", badgeIcon: CheckCircle, buttons: [{ text: "Choisir", href: "/contact" }],
|
||||||
price: "1990€", period: "À partir de", description: "Site multi-pages riche pour présenter l'ensemble de votre écosystème.", button: { text: "Choisir", href: "#contact" },
|
features: ["Architecture multi-pages", "Gestion de contenu (CMS)", "SEO Avancé", "Formulaires complexes"]
|
||||||
featuresTitle: "Tout en One-Page + :", features: ["Architecture multi-pages", "Gestion de contenu (CMS)", "SEO Avancé", "Formulaires complexes"]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "personnalise", tag: "Sur-mesure", tagIcon: Palette,
|
id: "personnalise", price: "Sur devis", name: "Sur-mesure", buttons: [{ text: "Parlons-en", href: "/contact" }],
|
||||||
price: "Sur devis", period: "Contactez-nous", description: "Application web sur-mesure ou plateforme e-commerce complexe.", button: { text: "Parlons-en", href: "#contact" },
|
features: ["Développement spécifique", "Support prioritaire", "Intégration API", "Monitoring 24/7"]
|
||||||
featuresTitle: "Pour aller plus loin :", features: ["Développement spécifique", "Support prioritaire", "Intégration API", "Monitoring 24/7"]
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</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
|
<MetricCardOne
|
||||||
title="Approuvé par les leaders du secteur"
|
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."
|
description="Des années d'expérience dans la création de produits numériques orientés résultats."
|
||||||
@@ -154,7 +147,7 @@ export default function WebAgency2Page() {
|
|||||||
description="Construisons quelque chose d'extraordinaire ensemble. Contactez-nous pour discuter de votre projet."
|
description="Construisons quelque chose d'extraordinaire ensemble. Contactez-nous pour discuter de votre projet."
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Lancer votre projet", href: "#contact" },
|
{ text: "Lancer votre projet", href: "/contact" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -164,11 +157,11 @@ export default function WebAgency2Page() {
|
|||||||
logoText="Switzerweb"
|
logoText="Switzerweb"
|
||||||
copyrightText="© 2026 | Switzerweb"
|
copyrightText="© 2026 | Switzerweb"
|
||||||
columns={[
|
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: "#" }] },
|
{ title: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -28,10 +28,10 @@ export default function PricingPage() {
|
|||||||
{ 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" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<div id="pricing" className="pt-32 pb-20">
|
<div id="pricing" className="pt-32 pb-20">
|
||||||
<PricingCardThree
|
<PricingCardThree
|
||||||
@@ -41,9 +41,9 @@ export default function PricingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
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: "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: "#" }] },
|
{ 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: "#" }] }
|
{ 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>
|
</div>
|
||||||
@@ -51,7 +51,7 @@ export default function PricingPage() {
|
|||||||
logoText="Switzerweb"
|
logoText="Switzerweb"
|
||||||
copyrightText="© 2026 | Switzerweb"
|
copyrightText="© 2026 | Switzerweb"
|
||||||
columns={[
|
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: "#" }] },
|
{ title: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user