175 lines
6.4 KiB
TypeScript
175 lines
6.4 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
|
import { Award } from "lucide-react";
|
|
import Link from "next/link";
|
|
|
|
export default function ProjectsPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="icon-arrow"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="soft"
|
|
contentWidth="medium"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="floatingGradient"
|
|
cardStyle="glass-depth"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="semibold"
|
|
>
|
|
{/* Navbar */}
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
brandName="Coppelmans Dakwerken"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Diensten", id: "/services" },
|
|
{ name: "Over Ons", id: "/about" },
|
|
{ name: "Projecten", id: "/projects" },
|
|
{ name: "Contact", id: "/contact" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
{/* Projects Gallery */}
|
|
<div id="projects" data-section="projects">
|
|
<ProductCardTwo
|
|
title="Gerealiseerde Projecten"
|
|
description="Bekijk enkele van onze succesvolle dakwerkprojecten uit de regio Weert en omgeving"
|
|
tag="Projectportfolio"
|
|
tagIcon={Award}
|
|
products={[
|
|
{
|
|
id: "1",
|
|
brand: "Huiseigenaar",
|
|
name: "Dakrenovatie Herenhuis",
|
|
price: "Voltooid",
|
|
rating: 5,
|
|
reviewCount: "Vorig jaar",
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/long-shot-men-working-together-roof_23-2149343674.jpg",
|
|
imageAlt: "Dakrenovatie herenhuis Weert",
|
|
},
|
|
{
|
|
id: "2",
|
|
brand: "Bedrijf",
|
|
name: "Industrieel Dak Hersteld",
|
|
price: "Voltooid",
|
|
rating: 5,
|
|
reviewCount: "Recent",
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/specialist-technician-professional-engineer-with-laptop-tablet-maintenance-checking-installing-solar-roof-panel-factory-rooftop-sunlight-engineers-team-survey-check-solar-panel-roof_609648-2202.jpg?_wi=5",
|
|
imageAlt: "Industrieel dakwerk gerepareerd",
|
|
},
|
|
{
|
|
id: "3",
|
|
brand: "Gezin",
|
|
name: "Zinkwerk & Guttering",
|
|
price: "Voltooid",
|
|
rating: 5,
|
|
reviewCount: "6 maanden",
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/worker-cuts-steel-profiles-drywall-close-up-selective-focus-preparing-installation-ceiling-profile-system-frame-renovation-repair_166373-1903.jpg",
|
|
imageAlt: "Zinkwerk en goten werk",
|
|
},
|
|
]}
|
|
gridVariant="three-columns-all-equal-width"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
{/* Trust Metrics */}
|
|
<div id="project-trust" data-section="project-trust">
|
|
<SocialProofOne
|
|
title="Waarom Kiezen Klanten Voor Ons"
|
|
description="Met meer dan 15 jaar ervaring en 500+ voltooide projecten zijn we de betrouwbare keuze in de regio"
|
|
tag="Bewezen Expertise"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
names={[
|
|
"500+ Projecten",
|
|
"15+ Jaar Ervaring",
|
|
"98% Tevreden Klanten",
|
|
"Persoonlijk Contact",
|
|
"Transparante Prijzen",
|
|
"Snelle Respons",
|
|
"Vakkundig Werk",
|
|
"Garantie Op Werk",
|
|
]}
|
|
speed={40}
|
|
showCard={true}
|
|
/>
|
|
</div>
|
|
|
|
{/* CTA Section */}
|
|
<div id="projects-contact" data-section="projects-contact">
|
|
<ContactSplit
|
|
tag="Volgende Project"
|
|
title="Wil Je Ons Project Toevoegen?"
|
|
description="Heb je ook een dakwerkproject? Vraag een gratis offerte aan en maak kennis met ons professionele werkwijze."
|
|
background={{ variant: "floatingGradient" }}
|
|
useInvertedBackground={false}
|
|
imageSrc="http://img.b2bpic.net/free-photo/worker-with-level-building-roof-house_23-2148748855.jpg?_wi=4"
|
|
imageAlt="Dakwerkproject in uitvoering"
|
|
inputPlaceholder="Uw e-mailadres"
|
|
buttonText="Offerte Aanvragen"
|
|
termsText="We bellen je snel terug met een gratis schatting en adviezen."
|
|
mediaPosition="right"
|
|
/>
|
|
</div>
|
|
|
|
{/* Footer */}
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{
|
|
title: "Navigatie",
|
|
items: [
|
|
{ label: "Home", href: "/" },
|
|
{ label: "Diensten", href: "/services" },
|
|
{ label: "Over Ons", href: "/about" },
|
|
{ label: "Projecten", href: "/projects" },
|
|
],
|
|
},
|
|
{
|
|
title: "Diensten",
|
|
items: [
|
|
{ label: "Dakreparatie", href: "/services" },
|
|
{ label: "Dakrenovatie", href: "/services" },
|
|
{ label: "Dakonderhoud", href: "/services" },
|
|
{ label: "Zinkwerken", href: "/services" },
|
|
],
|
|
},
|
|
{
|
|
title: "Contact",
|
|
items: [
|
|
{ label: "Telefoon: 06 18931560", href: "tel:0618931560" },
|
|
{ label: "Sint Jozefslaan 149", href: "#" },
|
|
{ label: "Weert, Limburg", href: "#" },
|
|
{ label: "Offerte Aanvragen", href: "/contact" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legaal",
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Algemene Voorwaarden", href: "#" },
|
|
{ label: "Cookies", href: "#" },
|
|
],
|
|
},
|
|
]}
|
|
bottomLeftText="© 2025 Coppelmans Dakwerken. Alle rechten voorbehouden."
|
|
bottomRightText="Professioneel dakwerk in Weert"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |