"use client"; import React from "react"; import { motion } from 'framer-motion'; import { ArrowLeft } from 'lucide-react'; import Header from "../components/Header"; import Footer from "../components/Footer"; import Link from "next/link"; import { useLocale, useTranslations } from "next-intl"; import { useEffect, useState } from "react"; import type { JSONContent } from "@tiptap/react"; import RichTextClient from "../components/RichTextClient"; export default function LegalNotice() { const locale = useLocale(); const t = useTranslations("common"); const [cmsDoc, setCmsDoc] = useState(null); const [cmsTitle, setCmsTitle] = useState(null); useEffect(() => { (async () => { try { const res = await fetch( `/api/content/page?key=${encodeURIComponent("legal-notice")}&locale=${encodeURIComponent(locale)}`, ); const data = await res.json(); if (data?.content?.content && data?.content?.locale === locale) { setCmsDoc(data.content.content as JSONContent); setCmsTitle((data.content.title as string | null) ?? null); } } catch {} })(); }, [locale]); return (
{t("backToHome")}

Legal.

{cmsDoc ? (
) : (

Angaben gemäß § 5 TMG

Dennis Konkol

Auf dem Ziegenbrink 2B, 49082 Osnabrück, Deutschland

E-Mail: info@dk0.dev

Haftung für Inhalte

Als Diensteanbieter bin ich gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen Seiten nach den allgemeinen Gesetzen verantwortlich. Nach §§ 8 bis 10 TMG bin ich als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicherte fremde Informationen zu überwachen.

Last updated: 12.02.2025

)}
); }