'use client'; import {CheckCircle} from 'lucide-react'; import {motion} from 'framer-motion'; import Link from 'next/link'; import Image from 'next/image'; const points = [ 'Fertigstellung in 4–8 Wochen', 'Fester Ansprechpartner von Anfang bis Ende', 'Struktur & Klarheit', 'Starkes Alleinstellungsmerkmal', 'Zuverlässiges Team mit Weitblick', ]; export default function WhyUs() { return (
Warum wir? {/* Logo */}
Rhein Software Logo
    {points.map((point, index) => (
  • {point}
  • ))}
Kostenlose Beratung anfragen
); }