'use client' import { motion } from 'framer-motion' import Navigation from '@/components/Navigation' import Footer from '@/components/Footer' import { useState } from 'react' export default function Wiki() { const [showFullPage, setShowFullPage] = useState(true) // Wiki URL über den Next.js API Proxy const wikiUrl = '/api/wiki' if (showFullPage) { // Vollständige Wiki-Seite als iframe return ( <>

doing-it Wiki