'use client'; import React from 'react'; import Link from 'next/link'; import {motion} from 'framer-motion'; import {Mail, Gavel, ShieldCheck, Cookie} from 'lucide-react'; const Footer = () => { const openCookieSettings = () => { window.dispatchEvent(new Event('show-cookie-banner')); }; return (
{/* Logo */}

Rhein Software

Individuelle Web- und Appentwicklung mit Qualität und Weitblick.

{/* Informationen */}

Informationen

  • Kontakt
{/* Rechtliches */}

Rechtliches

  • Datenschutz
  • Impressum
© 2025 Rhein Software Development. Alle Rechte vorbehalten.
); }; export default Footer;