Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | 'use client' import { useSearchParams } from 'next/navigation' import { AppNavBar } from '@/components/AppNavBar' import { EuclidCanvas } from '@/components/toys/euclid/EuclidCanvas' interface Props { isAdmin: boolean } export function PlaygroundClient({ isAdmin }: Props) { const searchParams = useSearchParams() const playerId = searchParams.get('player') || null return ( <div data-component="euclid-playground-page" style={{ width: '100vw', height: '100dvh', overflow: 'hidden', background: '#FAFAF0', display: 'flex', flexDirection: 'column', }} > <AppNavBar navSlot={ <a href="/toys/euclid" style={{ fontSize: '14px', fontWeight: 600, color: 'rgba(55, 65, 81, 1)', textDecoration: 'none', }} > ← Euclid's Elements </a> } /> <div style={{ flex: 1, minHeight: 0, paddingTop: 'var(--app-nav-height)', touchAction: 'none', position: 'relative', }} > <EuclidCanvas propositionId={0} playgroundMode playerId={playerId} isAdmin={isAdmin} /> </div> </div> ) } |