Compare commits
82 Commits
version_49
...
version_60
| Author | SHA1 | Date | |
|---|---|---|---|
| ab0c5472ee | |||
| 3e45039fd7 | |||
| 605bf655cd | |||
| 45a733a21c | |||
| 42ed3350cc | |||
| 469e7bc4c5 | |||
| 3d9d16054c | |||
| e9ebf38702 | |||
| 245849e139 | |||
| fa13c94aae | |||
| fd261020d2 | |||
| 277ee78e9e | |||
| 3d61fb8b13 | |||
| ba0dcef684 | |||
| f3d9ea0324 | |||
| fe16fb7bcb | |||
| 25b65554bb | |||
| ab52e1b3ef | |||
| e05bff3018 | |||
| 60bd37e0f1 | |||
| d247e23d81 | |||
| d44c9ca5d0 | |||
| 04e8712c08 | |||
| 2991b2c22e | |||
| 809fac6323 | |||
| ef3c1cb995 | |||
| e13d0963a5 | |||
| 2cfadee187 | |||
| 4ffe390e1f | |||
| 6cd6b42875 | |||
| c1da9bb321 | |||
| 98173327c8 | |||
| c476bdbb13 | |||
| 48b85432d3 | |||
| b5aa9315f0 | |||
| ee229cbd90 | |||
| 7bb142fd84 | |||
| 8f9ae90c00 | |||
| c0cd2184f7 | |||
| c07c6e7311 | |||
| 1e7dad7ad9 | |||
| 73084df2b0 | |||
| d40fd0c6ee | |||
| 8d49de9bc9 | |||
| d79d797444 | |||
| 1aa21b97dc | |||
| cf47a5ae9f | |||
| 89e09a29ec | |||
| 3c4e77a580 | |||
| 9d73c54318 | |||
| d005171071 | |||
| 78b76baffb | |||
| d3c8118ae9 | |||
| 768f314a17 | |||
| b06b52a768 | |||
| 56727d640d | |||
| 4500b76002 | |||
| e31eb9a7f3 | |||
| 6949ae7216 | |||
| a863688bc1 | |||
| 735c80f372 | |||
| 1fc38ceb3d | |||
| 284dd1a79f | |||
| 6c15aa3c5f | |||
| d88a2c6325 | |||
| a55343c17a | |||
| 77fb8aa36d | |||
| 4b2efebfd1 | |||
| fea9f47837 | |||
| d5b35cd7be | |||
| 144c9109b8 | |||
| fb8b2702e5 | |||
| 73d94cc1f7 | |||
| d11de498cc | |||
| 0246cf064d | |||
| 5c85e960ef | |||
| 2fabb18437 | |||
| 434c24831b | |||
| 70b4e6f006 | |||
| 3c5e28d328 | |||
| 8f57187b3c | |||
| 0e1f6a2ec9 |
@@ -27,10 +27,9 @@ export default function ComparisonPage() {
|
|||||||
{ 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: "Pricing", id: "pricing" }
|
{ name: "Pricing", id: "pricing" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<div className="pt-32 pb-20 text-center">
|
<div className="pt-32 pb-20 text-center">
|
||||||
<h1 className="text-4xl font-medium">Page vide</h1>
|
<h1 className="text-4xl font-medium">Page vide</h1>
|
||||||
@@ -40,11 +39,11 @@ export default function ComparisonPage() {
|
|||||||
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" }] },
|
||||||
{ 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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,11 +2,16 @@
|
|||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
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 NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||||
|
|
||||||
export default function ContactPage() {
|
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 (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="text-stagger"
|
||||||
@@ -21,36 +26,47 @@ export default function ContactPage() {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<NavbarLayoutFloatingOverlay
|
<div id="nav" data-section="nav">
|
||||||
brandName="Switzerweb"
|
<NavbarStyleApple
|
||||||
navItems={[
|
brandName="Switzerweb"
|
||||||
{ name: "Home", id: "/" },
|
navItems={[
|
||||||
{ name: "Réalisations", id: "work" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Réalisations", id: "work" },
|
||||||
{ name: "À Propos", id: "about" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "À Propos", id: "about" },
|
||||||
{ name: "Tarifs", id: "pricing" }
|
{ name: "Contact", id: "/contact" },
|
||||||
]}
|
{ name: "Tarifs", id: "pricing" }
|
||||||
button={{ text: "Démarrer", href: "/contact" }}
|
]}
|
||||||
/>
|
/>
|
||||||
<div className="pt-32 pb-20">
|
</div>
|
||||||
<ContactSplit
|
<div className="pt-32 pb-20">
|
||||||
title="Parlons de votre projet"
|
<div id="contact-form" data-section="contact-form">
|
||||||
description="Nous sommes à votre écoute pour concevoir la solution digitale qui correspond à vos ambitions."
|
<ContactSplitForm
|
||||||
tag="Contact"
|
title="Parlons de votre projet"
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
description="Nous sommes à votre écoute pour concevoir la solution digitale qui correspond à vos ambitions."
|
||||||
mediaPosition="right"
|
inputs={[
|
||||||
useInvertedBackground={false}
|
{ 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>
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
logoText="Switzerweb"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778866973153-laldct7r.png?_wi=2"
|
||||||
|
columns={[
|
||||||
|
{ items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "/contact" }] },
|
||||||
|
{ items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</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>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
|||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
||||||
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
|
import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
export default function WebAgency2Page() {
|
export default function WebAgency2Page() {
|
||||||
@@ -35,10 +35,9 @@ 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: "Pricing", 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"
|
||||||
@@ -76,15 +75,19 @@ export default function WebAgency2Page() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="testimonials">
|
<div id="testimonials">
|
||||||
<TestimonialCardTen
|
<TestimonialCardSix
|
||||||
title="Témoignages Clients"
|
title="Témoignages Clients"
|
||||||
description="Ce que nos clients disent de notre expertise."
|
description="Ce que nos clients disent de notre expertise."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
topMarqueeDirection="left"
|
||||||
|
speed={30}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{ id: "t1", title: "Excellent", quote: "Une transformation totale de notre identité visuelle. Résultat sublime.", name: "Sophie L.", role: "Fondatrice" },
|
{ id: "t1", name: "Sophie L.", handle: "@sophie", testimonial: "Une transformation totale de notre identité visuelle. Résultat sublime." },
|
||||||
{ id: "t2", title: "Rapide", quote: "Professionnalisme et rapidité au rendez-vous. Je recommande vivement.", name: "Marc P.", role: "Manager" },
|
{ id: "t2", name: "Marc P.", handle: "@marc", testimonial: "Professionnalisme et rapidité au rendez-vous. Je recommande vivement." },
|
||||||
{ id: "t3", title: "Efficace", quote: "Le SEO a clairement fait décoller nos ventes en quelques mois.", name: "Julie M.", role: "Directrice" }
|
{ 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>
|
||||||
@@ -96,7 +99,7 @@ export default function WebAgency2Page() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[{ text: "Voir tous les projets", href: "#work" }]}
|
buttons={[{ text: "Voir tous les projets", href: "#work" }]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
cardClassName="!h-auto aspect-video"
|
cardClassName="!h-full !aspect-video object-cover"
|
||||||
features={[
|
features={[
|
||||||
{ title: "Digital Inflatables Artist", description: "Site portfolio", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778861460221-euyk88uh.png", imageAlt: "Digital Inflatables Artist", buttonHref: "#", buttonIcon: ArrowRight },
|
{ title: "Digital Inflatables Artist", description: "Site portfolio", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778861460221-euyk88uh.png", imageAlt: "Digital Inflatables Artist", buttonHref: "#", buttonIcon: ArrowRight },
|
||||||
{ title: "FLEX Studio", description: "Site showcase", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778861460221-khgvbcj0.png", imageAlt: "FLEX Studio", buttonHref: "#", buttonIcon: ArrowRight },
|
{ title: "FLEX Studio", description: "Site showcase", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B1CZ8wJvEJetEx867dlBUUa9fk/uploaded-1778861460221-khgvbcj0.png", imageAlt: "FLEX Studio", buttonHref: "#", buttonIcon: ArrowRight },
|
||||||
@@ -114,15 +117,15 @@ export default function WebAgency2Page() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "one-page", price: "250 CHF", name: "Site One Page", buttons: [{ text: "Démarrer", href: "/contact" }],
|
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"]
|
features: ["SEO de base", "Performance optimisée", "Responsive sur mobile"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "multi-pages", price: "1350 CHF", name: "Multi-pages", badge: "Populaire", badgeIcon: CheckCircle, 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"]
|
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"]
|
features: ["Développement spécifique", "Support prioritaire", "Intégration API", "Monitoring 24/7"]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
@@ -147,7 +150,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}
|
||||||
@@ -157,11 +160,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" }] },
|
||||||
{ 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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,10 +29,9 @@ export default function PricingHighlightedCardsPage() {
|
|||||||
{ 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: "Pricing", id: "pricing" }
|
{ name: "Pricing", id: "pricing" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<div id="pricing-highlighted-cards" className="pt-32 pb-20">
|
<div id="pricing-highlighted-cards" className="pt-32 pb-20">
|
||||||
<PricingCardTwo
|
<PricingCardTwo
|
||||||
@@ -58,11 +57,11 @@ export default function PricingHighlightedCardsPage() {
|
|||||||
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" }] },
|
||||||
{ 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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,10 +29,9 @@ export default function PricingHighlightedPage() {
|
|||||||
{ 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: "Pricing", id: "pricing" }
|
{ name: "Pricing", id: "pricing" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "#contact" }}
|
button={{ text: "Démarrer", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<div id="pricing-highlighted" className="pt-32 pb-20">
|
<div id="pricing-highlighted" className="pt-32 pb-20">
|
||||||
<PricingCardOne
|
<PricingCardOne
|
||||||
@@ -50,11 +49,11 @@ export default function PricingHighlightedPage() {
|
|||||||
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" }] },
|
||||||
{ 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,7 +28,6 @@ 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: "Pricing", id: "pricing" }
|
{ name: "Pricing", id: "pricing" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Démarrer", href: "/contact" }}
|
button={{ text: "Démarrer", href: "/contact" }}
|
||||||
@@ -51,11 +50,11 @@ 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" }] },
|
||||||
{ 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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user