"use client"; import {motion} from "framer-motion"; const fadeInUp = { hidden: {opacity: 0, y: 30}, visible: (i: number) => ({ opacity: 1, y: 0, transition: { duration: 0.6, delay: i * 0.2, ease: "easeOut", }, }), }; const ImprintComp = () => { const sections = [ { title: "Impressum", content: ( <> Thatsaphorn Atchariyaphap
Rhein-Software (Einzelunternehmer)
MĂĽhlenstrasse 13
79664 Wehr ), }, { title: "Kontakt", content: ( <> Telefon: +49 (0) 151 24003632
E-Mail:{" "} contact@rhein-software.dev ), }, { title: "EU-Streitschlichtung", content: ( <> Die Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit:{" "} https://ec.europa.eu/consumers/odr/ .
Unsere E-Mail-Adresse finden Sie oben im Impressum. ), }, { title: "Verbraucherstreitbeilegung / Universalschlichtungsstelle", content: ( <> Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen. ), }, ]; return (
{sections.map((section, i) => (

{section.title}

{section.content}
))} Quelle:{" "} www.e-recht24.de
); }; export default ImprintComp;