import Navigation from '@/components/Navigation'; import { ReactNode } from 'react'; import { Link } from 'react-router-dom'; import { Button } from '@/components/ui/button'; import { ArrowLeft } from 'lucide-react'; interface LayoutProps { children: ReactNode; showBackToGames?: boolean; } const Layout = ({ children, showBackToGames = false }: LayoutProps) => { return (