Fast fertig

This commit is contained in:
2025-09-15 16:08:35 +02:00
parent 4d755e7fb0
commit ecce65db79
22 changed files with 2023 additions and 227 deletions

View File

@@ -1,7 +1,7 @@
import React from 'react';
import Header from '@/components/Header';
import Footer from '@/components/Footer';
import { Wrench, Settings, Shield, Award, Users, CheckCircle } from 'lucide-react';
import { Wrench, Settings, Shield, Award, Users, CheckCircle, ChevronRight } from 'lucide-react';
const Services = () => {
const services = [
@@ -28,15 +28,31 @@ const Services = () => {
return (
<div className="min-h-screen bg-slate-900">
<Header />
{/* Breadcrumbs */}
<nav className="bg-slate-800 border-b border-slate-700 py-3">
<div className="container mx-auto px-4">
<div className="flex items-center space-x-2 text-sm">
<button
onClick={() => window.location.href = '/'}
className="text-slate-400 hover:text-white transition-colors"
>
Home
</button>
<ChevronRight className="h-4 w-4 text-slate-500" />
<span className="text-white font-medium">Services & Specialties</span>
</div>
</div>
</nav>
<main>
{/* Hero Section with Image */}
<section className="relative py-32 overflow-hidden">
{/* Background Image */}
<div
className="absolute inset-0 bg-cover bg-center bg-no-repeat"
style={{ backgroundImage: 'url(/carousel_2.png)' }}
style={{ backgroundImage: 'url(/hero_subpage.png)' }}
>
<div className="absolute inset-0 bg-slate-900/80"></div>
</div>
{/* Geometric Elements */}