Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d5622a4a0a | |||
| a40baeef57 | |||
| 2ed531e36d | |||
| dfa687abfe | |||
| adfad776c8 | |||
| 3bba9f0bf2 | |||
| f58d4cab08 | |||
| b8695c791c | |||
| fb9a93271b | |||
| eb1c6602b5 | |||
| 6d0c7f9551 | |||
| 11209cc139 | |||
| 437268bb38 |
98
src/app/contact/page.tsx
Normal file
98
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,98 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Mail } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "/" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "À propos", id: "about" },
|
||||
{ name: "Avis clients", id: "testimonials" },
|
||||
{ name: "Zones", id: "zones" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Entreprise Parant"
|
||||
bottomLeftText="Reims & Marne"
|
||||
bottomRightText="03 26 48 09 83"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Contact"
|
||||
tagIcon={Mail}
|
||||
title="Demander un devis gratuit"
|
||||
description="Remplissez le formulaire ci-dessous pour recevoir rapidement un devis personnalisé. Notre équipe vous recontactera dans les 24 heures pour discuter de votre projet de terrassement."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="votre.email@exemple.com"
|
||||
buttonText="Recevoir le devis"
|
||||
termsText="Nous traiterons votre demande avec sérieux. Téléphone : 03 26 48 09 83"
|
||||
onSubmit={(email) => {
|
||||
console.log("Email submitted:", email);
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Entreprise Parant"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Terrassement de terrain", href: "/#services" },
|
||||
{ label: "Préparation de terrain", href: "/#services" },
|
||||
{ label: "Nivellement", href: "/#services" },
|
||||
{ label: "Aménagement extérieur", href: "/#services" },
|
||||
{ label: "Évacuation de terre", href: "/#services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Entreprise", items: [
|
||||
{ label: "À propos", href: "/#about" },
|
||||
{ label: "Zones d'intervention", href: "/#zones" },
|
||||
{ label: "Avis clients", href: "/#testimonials" },
|
||||
{ label: "Demander un devis", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Téléphone: 03 26 48 09 83", href: "tel:+33326480983" },
|
||||
{ label: "20 Passage Marx Dormoy Neuv", href: "#" },
|
||||
{ label: "51100 Reims, France", href: "#" },
|
||||
{ label: "Lundi-Vendredi 08:00+", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Légal", items: [
|
||||
{ label: "Politique de confidentialité", href: "#" },
|
||||
{ label: "Mentions légales", href: "#" },
|
||||
{ label: "Conditions générales", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Entreprise Parant. Tous droits réservés. Terrassement à Reims et région Marne."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,57 +1,44 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Figtree } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter_Tight } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree", subsets: ["latin"],
|
||||
const interTight = Inter_Tight({
|
||||
variable: '--font-inter-tight',
|
||||
subsets: ['latin'],
|
||||
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "SP Entreprise - Travaux et Rénovation à Reims", description: "Entreprise locale de rénovation à Reims. Travaux de bâtiment, peinture, plomberie, électricité. Devis gratuit, intervention rapide. Appelez maintenant: 07 83 87 38 35", keywords: "rénovation Reims, travaux bâtiment Reims, peinture Reims, plomberie Reims, électricité Reims, artisan Reims, entreprise rénovation locale", metadataBase: new URL("https://www.sp-entreprise-reims.fr"),
|
||||
alternates: {
|
||||
canonical: "https://www.sp-entreprise-reims.fr"},
|
||||
title: 'Entreprise Parant - Terrassement à Reims',
|
||||
description: 'Entreprise de terrassement et travaux publics à Reims. Services de terrassement, nivellement, aménagement extérieur. Devis gratuit. Intervention rapide.',
|
||||
keywords: 'terrassement Reims, travaux publics Reims, entreprise terrassement, terrassier Reims, travaux de terrain',
|
||||
openGraph: {
|
||||
title: "SP Entreprise - Travaux et Rénovation à Reims", description: "Votre expert en travaux et rénovation à Reims. Interventions rapides, devis gratuit, entreprise locale et fiable.", url: "https://www.sp-entreprise-reims.fr", siteName: "SP Entreprise", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/back-view-men-with-white-helmets-suits_23-2148269337.jpg", alt: "SP Entreprise - Rénovation Reims"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "SP Entreprise - Travaux et Rénovation à Reims", description: "Votre expert local en rénovation. Devis gratuit, intervention rapide à Reims et alentours.", images: ["http://img.b2bpic.net/free-photo/back-view-men-with-white-helmets-suits_23-2148269337.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
title: 'Entreprise Parant - Terrassement à Reims',
|
||||
description: 'Terrassement professionnel à Reims et région Marne. Devis gratuit.',
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="fr" suppressHydrationWarning>
|
||||
<body className={`${interTight.variable}`}>
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
||||
document.documentElement.classList.add('dark')
|
||||
} else {
|
||||
document.documentElement.classList.remove('dark')
|
||||
}
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1406,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
148
src/app/page.tsx
148
src/app/page.tsx
@@ -11,57 +11,58 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import {
|
||||
Home,
|
||||
Droplet,
|
||||
Lightbulb,
|
||||
Shovel,
|
||||
Truck,
|
||||
Hammer,
|
||||
Wrench,
|
||||
Building2,
|
||||
Palette,
|
||||
Zap,
|
||||
TrendingUp,
|
||||
MapPin,
|
||||
Phone,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="largeSmall"
|
||||
background="circleGradient"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="radial-glow"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "home" },
|
||||
{ name: "Accueil", id: "/" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Pourquoi nous", id: "why" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Devis gratuit", id: "quote" },
|
||||
{ name: "À propos", id: "about" },
|
||||
{ name: "Avis clients", id: "testimonials" },
|
||||
{ name: "Zones", id: "zones" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="SP Entreprise"
|
||||
bottomLeftText="Reims & Alentours"
|
||||
bottomRightText="07 83 87 38 35"
|
||||
brandName="Entreprise Parant"
|
||||
bottomLeftText="Reims & Marne"
|
||||
bottomRightText="03 26 48 09 83"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="SP Entreprise"
|
||||
description="Votre expert en travaux et rénovation à Reims. Interventions rapides, travail soigné et devis gratuit. Entreprise locale, fiable et réactive pour tous vos projets de rénovation et amélioration de l'habitat."
|
||||
logoText="Entreprise Parant"
|
||||
description="Entreprise de terrassement à Reims spécialisée dans les travaux de terrain, nivellement et aménagement extérieur. Services professionnels pour particuliers, promoteurs immobiliers et collectivités locales. Intervention rapide et devis gratuit."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Appeler maintenant", href: "tel:+33783873835" },
|
||||
{ text: "Demander un devis" },
|
||||
{ text: "Appeler maintenant", href: "tel:+33326480983" },
|
||||
{ text: "Demander un devis gratuit", href: "/contact" },
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/back-view-men-with-white-helmets-suits_23-2148269337.jpg"
|
||||
imageAlt="Rénovation intérieure professionnelle"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/heavy-excavator-digging-day-light_23-2149194836.jpg?id=20828285"
|
||||
imageAlt="Chantier de terrassement professionnel"
|
||||
frameStyle="card"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
@@ -70,38 +71,30 @@ export default function LandingPage() {
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureBento
|
||||
title="Nos Services"
|
||||
description="Découvrez l'ensemble de nos prestations de rénovation et travaux pour particuliers et professionnels à Reims et ses alentours."
|
||||
tag="Services complètes"
|
||||
title="Nos Services de Terrassement"
|
||||
description="Découvrez l'ensemble de nos prestations spécialisées en terrassement et travaux publics pour la région de Reims et la Marne."
|
||||
tag="Services professionnels"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Rénovation intérieure", description: "Transformation complète de votre intérieur avec expertise et professionnalisme.", bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: Home, label: "Cuisine", value: "Rénovation complète" },
|
||||
{ icon: Droplet, label: "Salle de bain", value: "Design moderne" },
|
||||
{ icon: Lightbulb, label: "Éclairage", value: "Solutions innovantes" },
|
||||
],
|
||||
title: "Terrassement de terrain", description: "Excavation et préparation de terrain pour tous types de projets de construction et aménagement.", bentoComponent: "reveal-icon", icon: Shovel,
|
||||
},
|
||||
{
|
||||
title: "Travaux de bâtiment", description: "Gros œuvre, maçonnerie et structures solides pour vos projets d'envergure.", bentoComponent: "3d-stack-cards", items: [
|
||||
{ icon: Hammer, title: "Gros œuvre", subtitle: "Structures", detail: "Expertise bâtiment" },
|
||||
{ icon: Wrench, title: "Maçonnerie", subtitle: "Solidité", detail: "Matériaux qualité" },
|
||||
{ icon: Building2, title: "Façade", subtitle: "Esthétique", detail: "Finitions premium" },
|
||||
],
|
||||
title: "Préparation de terrain pour construction", description: "Nivellement et préparation de sites pour chantiers résidentiels, commerciaux et industriels.", bentoComponent: "reveal-icon", icon: Truck,
|
||||
},
|
||||
{
|
||||
title: "Peinture", description: "Peinture intérieure et extérieure avec finitions impeccables.", bentoComponent: "reveal-icon", icon: Palette,
|
||||
title: "Nivellement et décaissement", description: "Travaux de nivellement précis et décaissement selon les normes de construction.", bentoComponent: "reveal-icon", icon: Hammer,
|
||||
},
|
||||
{
|
||||
title: "Plomberie", description: "Installation, réparation et maintenance de vos systèmes d'eau.", bentoComponent: "reveal-icon", icon: Droplet,
|
||||
title: "Création d'accès chantier", description: "Aménagement d'accès temporaires et permanents pour faciliter les chantiers.", bentoComponent: "reveal-icon", icon: MapPin,
|
||||
},
|
||||
{
|
||||
title: "Électricité", description: "Travaux électriques aux normes de sécurité actuelles.", bentoComponent: "reveal-icon", icon: Zap,
|
||||
title: "Aménagement extérieur", description: "Solutions complètes d'aménagement extérieur avec matériel professionnel.", bentoComponent: "reveal-icon", icon: TrendingUp,
|
||||
},
|
||||
{
|
||||
title: "Petits travaux & Dépannage", description: "Interventions rapides pour tous vos besoins ponctuels.", bentoComponent: "reveal-icon", icon: Wrench,
|
||||
title: "Évacuation de terre et gravats", description: "Service d'évacuation responsable et respectueux de l'environnement.", bentoComponent: "reveal-icon", icon: Truck,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -109,13 +102,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="why" data-section="why">
|
||||
<MetricCardTwo
|
||||
title="Pourquoi nous choisir"
|
||||
description="SP Entreprise réunit tous les atouts pour devenir votre partenaire de confiance en rénovation à Reims."
|
||||
title="Pourquoi choisir Entreprise Parant"
|
||||
description="Nous réunissons tous les atouts pour devenir votre partenaire de confiance en terrassement et travaux publics à Reims et en Marne."
|
||||
metrics={[
|
||||
{ id: "1", value: "100% Local", description: "Entreprise basée à Reims" },
|
||||
{ id: "2", value: "Devis Gratuit", description: "Sans engagement" },
|
||||
{ id: "3", value: "Rapides", description: "Intervention express" },
|
||||
{ id: "4", value: "Qualité", description: "Travail professionnel" },
|
||||
{ id: "1", value: "100% Local", description: "Basée à Reims depuis plusieurs années" },
|
||||
{ id: "2", value: "Expérience", description: "Expertise confirmée dans les travaux publics" },
|
||||
{ id: "3", value: "Matériel Pro", description: "Équipements professionnels complets" },
|
||||
{ id: "4", value: "Délais", description: "Respect des délais convenus" },
|
||||
{ id: "5", value: "Personnalisé", description: "Accompagnement personnalisé de vos projets" },
|
||||
{ id: "6", value: "Devis Gratuit", description: "Propositions sans engagement" },
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
@@ -126,12 +121,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout
|
||||
title="À propos de SP Entreprise"
|
||||
title="À propos d'Entreprise Parant"
|
||||
description={[
|
||||
"SP Entreprise est une entreprise locale spécialisée dans les travaux de rénovation et d'amélioration de l'habitat à Reims et ses alentours. Depuis des années, nous accompagnons les particuliers et professionnels dans leurs projets avec sérieux, transparence et professionnalisme.", "Notre équipe expérimentée met son expertise au service de votre satisfaction. Nous travaillons uniquement avec des matériaux de qualité et respectons les délais convenus pour chaque intervention. Votre confiance est notre priorité absolue.", "Que vous envisagiez une simple rénovation ponctuelle ou un chantier plus important, nous sommes là pour concrétiser vos idées avec excellence et fiabilité."
|
||||
"Entreprise Parant est une société locale spécialisée dans les travaux de terrassement et de préparation de terrain à Reims et dans toute la région de la Marne. Nous accompagnons particuliers, promoteurs immobiliers, entreprises de construction et collectivités locales dans leurs projets d'aménagement extérieur et de construction avec professionnalisme et efficacité.", "Notre équipe expérimentée met son savoir-faire au service de votre satisfaction. Nous travaillons avec du matériel professionnel performant et respectons scrupuleusement les délais convenus pour chaque intervention. Votre confiance est notre priorité absolue.", "Que vous ayez besoin d'un terrassement ponctuel ou d'un chantier complexe, nous sommes là pour concrétiser vos projets avec excellence et fiabilité."
|
||||
]}
|
||||
buttons={[{ text: "Demander un devis gratuit", href: "#quote" }]}
|
||||
showBorder={true}
|
||||
buttons={[{ text: "Demander un devis gratuit", href: "/contact" }]}
|
||||
showBorder={false}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -139,27 +134,27 @@ export default function LandingPage() {
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
title="Avis clients"
|
||||
description="Décourez les témoignages de nos clients satisfaits à Reims et dans la région."
|
||||
description="Découvrez les témoignages de nos clients satisfaits à Reims et dans la région de la Marne."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Rénovation kitchen exceptionnelle", quote: "SP Entreprise a transformé notre cuisine en une pièce magnifique et fonctionnelle. L'équipe était professionnelle, ponctuelle et très attentive à nos demandes. Je recommande vivement!", name: "Catherine Dubois", role: "Propriétaire, Reims", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-guy-classic-black-shirt-with-arms-crossed_146671-13946.jpg", imageAlt: "Portrait client Catherine"
|
||||
id: "1", title: "Terrassement professionnel et rapide", quote: "Entreprise Parant a réalisé le terrassement de notre terrain avec beaucoup de professionnalisme. Travail soigné, équipe réactive et respectueuse. Très satisfait du résultat et des délais respectés.", name: "Philippe Dubois", role: "Propriétaire, Reims", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop", imageAlt: "Portrait client Philippe"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Service rapide et fiable", quote: "Besoin d'une intervention rapide pour des travaux électriques urgents. SP Entreprise s'est déplacée immédiatement et a résolu le problème avec efficacité. Merci pour cette réactivité!", name: "Jean-Pierre Martin", role: "Professionnel, Tinqueux", imageSrc: "http://img.b2bpic.net/free-photo/yes-very-good-smiling-beautiful-woman-showing-thumbs-up-give-approval-recommending-quality-product-standing-white-background_176420-50291.jpg", imageAlt: "Portrait client Jean-Pierre"
|
||||
id: "2", title: "Devis transparents et honnêtes", quote: "Nous avons apprécié la transparence d'Entreprise Parant. Devis clair, sans frais cachés, et exécution impeccable. L'équipe explique bien les travaux à réaliser.", name: "Marianne Leclerc", role: "Propriétaire, Tinqueux", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=150&h=150&fit=crop", imageAlt: "Portrait client Marianne"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Rénovation salle de bain réussie", quote: "Projet de rénovation complète de notre salle de bain. L'équipe a respecté le budget, les délais et la qualité était au rendez-vous. Vraiment satisfaits du résultat!", name: "Sophie Leclerc", role: "Propriétaire, Bétheny", imageSrc: "http://img.b2bpic.net/free-photo/serious-confident-red-haired-business-lady-wearing-jacket-standing-with-arms-folded_74855-10381.jpg", imageAlt: "Portrait client Sophie"
|
||||
id: "3", title: "Excellente réactivité", quote: "Besoin urgent de travaux de terrassement pour notre chantier. Entreprise Parant s'est déplacée rapidement et a trouvé des solutions appropriées. Très professionnel!", name: "Jean-Luc Bernard", role: "Promoteur immobilier, Bétheny", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=150&h=150&fit=crop", imageAlt: "Portrait client Jean-Luc"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Travaux de rénovation complète", quote: "Nous avons confié l'ensemble de la rénovation de notre maison à SP Entreprise. Coordination exceptionnelle et suivi rigoureux du chantier. Une entreprise sur laquelle on peut compter!", name: "Michel Bernard", role: "Propriétaire, Cormontreuil", imageSrc: "http://img.b2bpic.net/free-photo/curly-lady-reaches-out-her-hand-man-sitting-before-bright-window-morning_1304-3321.jpg", imageAlt: "Portrait client Michel"
|
||||
id: "4", title: "Partenaire fiable pour nos projets", quote: "Nous travaillons régulièrement avec Entreprise Parant. Fiabilité garantie, matériel adapté et équipe compétente. Un vrai partenaire pour nos constructions.", name: "Sophie Moreau", role: "Entreprise de construction, Cormontreuil", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop", imageAlt: "Portrait client Sophie"
|
||||
},
|
||||
{
|
||||
id: "5", title: "Équipe compétente et courtoise", quote: "Dépannage plomberie urgent réalisé avec professionnalisme. L'équipe a expliqué les problèmes et proposé les meilleures solutions. Service impeccable du début à la fin.", name: "Valérie Durand", role: "Propriétaire, Reims", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-dark-skinned-woman-wearing-stylish-turtleneck-smiling-positively-showing-thumbs-up-gesture_344912-1031.jpg", imageAlt: "Portrait client Valérie"
|
||||
id: "5", title: "Service complet et consciencieux", quote: "De l'excavation à l'évacuation des terres, Entreprise Parant gère tout avec sérieux. Travail consciencieux et site bien entretenu pendant les travaux.", name: "Michel Rousseau", role: "Propriétaire, Reims", imageSrc: "https://images.unsplash.com/photo-1500595046891-e2eef3a2f8d5?w=150&h=150&fit=crop", imageAlt: "Portrait client Michel"
|
||||
},
|
||||
{
|
||||
id: "6", title: "Peinture intérieure professionnelle", quote: "Travaux de peinture intérieure de très haute qualité. L'équipe était organisée, soigneuse et respectueuse de notre espace. Les finitions sont parfaites!", name: "Nathalie Petit", role: "Propriétaire, Reims", imageSrc: "http://img.b2bpic.net/free-photo/crazy-man-angry-expression_1194-2114.jpg", imageAlt: "Portrait client Nathalie"
|
||||
id: "6", title: "Respect des engagement", quote: "Entreprise Parant a respecté tous ses engagements : délais, budget, qualité. Une entreprise sur laquelle on peut vraiment compter.", name: "Valérie Durand", role: "Collectivité locale, Marne", imageSrc: "https://images.unsplash.com/photo-1507876466836-34161529184d?w=150&h=150&fit=crop", imageAlt: "Portrait client Valérie"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -168,11 +163,11 @@ export default function LandingPage() {
|
||||
<div id="zones" data-section="zones">
|
||||
<SocialProofOne
|
||||
title="Zone d'intervention"
|
||||
description="SP Entreprise intervient à Reims et dans les communes environnantes pour vous offrir un service local de proximité."
|
||||
description="Entreprise Parant intervient à Reims et dans l'ensemble de la région de la Marne pour vous offrir un service local de proximité."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Reims", "Tinqueux", "Bétheny", "Cormontreuil", "Witry-lès-Reims", "Villedommange", "Saint-Brice-Courcelles", "Épernay"
|
||||
"Reims", "Tinqueux", "Bétheny", "Cormontreuil", "Bezannes", "Villedommange", "Saint-Brice-Courcelles", "Épernay", "Vitry-le-François", "Châlons-en-Champagne"
|
||||
]}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
@@ -181,11 +176,11 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Besoin d'un devis gratuit ou d'une intervention rapide? Contactez SP Entreprise dès maintenant pour discuter de votre projet de rénovation."
|
||||
text="Besoin d'un devis gratuit ou d'une intervention rapide pour vos travaux de terrassement? Contactez Entreprise Parant dès maintenant. Notre équipe est à votre disposition pour discuter de votre projet et vous proposer les meilleures solutions. Téléphone : 03 26 48 09 83"
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Appeler au 07 83 87 38 35", href: "tel:+33783873835" },
|
||||
{ text: "Formulaire de contact" },
|
||||
{ text: "Appeler au 03 26 48 09 83", href: "tel:+33326480983" },
|
||||
{ text: "Demander un devis par email", href: "#footer" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
@@ -194,16 +189,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="SP Entreprise"
|
||||
logoText="Entreprise Parant"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Rénovation intérieure", href: "#services" },
|
||||
{ label: "Travaux de bâtiment", href: "#services" },
|
||||
{ label: "Peinture", href: "#services" },
|
||||
{ label: "Plomberie", href: "#services" },
|
||||
{ label: "Électricité", href: "#services" },
|
||||
{ label: "Petits travaux", href: "#services" },
|
||||
{ label: "Terrassement de terrain", href: "#services" },
|
||||
{ label: "Préparation de terrain", href: "#services" },
|
||||
{ label: "Nivellement", href: "#services" },
|
||||
{ label: "Aménagement extérieur", href: "#services" },
|
||||
{ label: "Évacuation de terre", href: "#services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -211,15 +205,15 @@ export default function LandingPage() {
|
||||
{ label: "À propos", href: "#about" },
|
||||
{ label: "Zones d'intervention", href: "#zones" },
|
||||
{ label: "Avis clients", href: "#testimonials" },
|
||||
{ label: "Devis gratuit", href: "#contact" },
|
||||
{ label: "Demander un devis", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Téléphone: 07 83 87 38 35", href: "tel:+33783873835" },
|
||||
{ label: "132 Av. Jean Jaurès, 51100 Reims", href: "#" },
|
||||
{ label: "Reims & alentours", href: "#zones" },
|
||||
{ label: "Demander un devis", href: "#contact" },
|
||||
{ label: "Téléphone: 03 26 48 09 83", href: "tel:+33326480983" },
|
||||
{ label: "20 Passage Marx Dormoy Neuv", href: "#" },
|
||||
{ label: "51100 Reims, France", href: "#" },
|
||||
{ label: "Lundi-Vendredi 08:00+", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -230,7 +224,7 @@ export default function LandingPage() {
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 SP Entreprise. Tous droits réservés."
|
||||
copyrightText="© 2025 Entreprise Parant. Tous droits réservés. Terrassement à Reims et région Marne."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user