"use client"; import React from "react"; import { motion } from 'framer-motion'; import { ArrowLeft, Mail, MapPin, Scale, ShieldCheck, Clock } 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 RichTextClient from "../components/RichTextClient"; export default function LegalNotice() { const locale = useLocale(); const t = useTranslations("common"); const [cmsHtml, setCmsHtml] = 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?.html && data?.content?.locale === locale) { setCmsHtml(data.content.html as string); } } catch {} })(); }, [locale]); return (
{/* Editorial Header */} {t("backToHome")}

Legal.

{/* Bento Content Grid */}
{/* Main Legal Content (Large Box) */} {cmsHtml ? (
) : (

Angaben gemäß § 5 TMG

Dennis Konkol

Auf dem Ziegenbrink 2B

49082 Osnabrück, Deutschland

Haftungsausschluss

Die Inhalte dieser Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte kann ich jedoch keine Gewähr übernehmen.

)}
{/* Sidebar Widgets */}
{/* Quick Contact Box */}

Direct Contact

Email

info@dk0.dev

Location

Osnabrück, GER

{/* Meta Info Box */}

Last Review

February 15, 2025

This legal notice applies to all contents on dk0.dev and related social media profiles.

); }