'use client'; import React from 'react'; import Link from 'next/link'; import { motion } from 'framer-motion'; import { Mail, Gavel, ShieldCheck, Cookie } from 'lucide-react'; import { FooterSection } from './FooterSection'; import { useCookieSettings } from '@/hooks/useCookieSettings'; const Footer = () => { const { openCookieSettings } = useCookieSettings(); return (
{/* Logo */}

Rhein Software

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

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