import React from 'react'; import { Page } from './_util'; import { useParams, Link } from 'react-router-dom'; import { usePollStats } from '../polling/usePollStats'; import { Card, CardContent } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import GalleryPreview from '../components/GalleryPreview'; export default function HomePage() { const { slug } = useParams(); const stats = usePollStats(slug!); return ( {stats.loading ? 'Lade…' : ( {stats.onlineGuests} Gäste online · ✅{' '} {stats.tasksSolved} Aufgaben gelöst )}
); }