|
|
|
|
@@ -3,13 +3,15 @@
|
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
|
|
|
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
|
|
|
|
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
|
|
|
|
import FaqBase from "@/components/sections/faq/FaqBase";
|
|
|
|
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
|
|
|
|
import { Zap, ShieldCheck, Headphones } from "lucide-react";
|
|
|
|
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
|
|
|
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
|
|
|
|
|
|
|
|
|
export default function ContactPage() {
|
|
|
|
|
const handleSubmit = (data: Record<string, string>) => {
|
|
|
|
|
console.log("Sending to theodore.elmiger@gmail.com:", data);
|
|
|
|
|
window.location.href = `mailto:theodore.elmiger@gmail.com?subject=Nouveau message de ${data.name}&body=Nom: ${data.name}%0AEmail: ${data.email}%0A%0A${data.message}`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<ThemeProvider
|
|
|
|
|
defaultButtonVariant="text-stagger"
|
|
|
|
|
@@ -39,52 +41,29 @@ export default function ContactPage() {
|
|
|
|
|
</div>
|
|
|
|
|
<div className="pt-32 pb-20">
|
|
|
|
|
<div id="contact-form" data-section="contact-form">
|
|
|
|
|
<ContactSplit
|
|
|
|
|
tag="Contact"
|
|
|
|
|
<ContactSplitForm
|
|
|
|
|
title="Parlons de votre projet"
|
|
|
|
|
description="Nous sommes à votre écoute pour concevoir la solution digitale qui correspond à vos ambitions."
|
|
|
|
|
background={{ variant: "plain" }}
|
|
|
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973153-laldct7r.png?_wi=1"
|
|
|
|
|
inputs={[
|
|
|
|
|
{ name: "name", type: "text", placeholder: "Votre nom", required: true },
|
|
|
|
|
{ name: "email", type: "email", placeholder: "Votre email", required: true }
|
|
|
|
|
]}
|
|
|
|
|
textarea={{ name: "message", placeholder: "Décrivez votre projet", rows: 5, required: true }}
|
|
|
|
|
buttonText="Envoyer"
|
|
|
|
|
onSubmit={handleSubmit}
|
|
|
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778867278663-8og1q5hx.png"
|
|
|
|
|
mediaPosition="right"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
/>
|
|
|
|
|
</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">
|
|
|
|
|
<FooterMedia
|
|
|
|
|
<FooterLogoEmphasis
|
|
|
|
|
logoText="Switzerweb"
|
|
|
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973153-laldct7r.png?_wi=2"
|
|
|
|
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973153-laldct7r.png?_wi=2"
|
|
|
|
|
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: "#" }] },
|
|
|
|
|
{ items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "/contact" }] },
|
|
|
|
|
{ items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|