import { ReactNode } from 'react'; import { Link, useLocation } from 'react-router-dom'; import './Layout.css'; interface LayoutProps { children: ReactNode; } function Layout({ children }: LayoutProps) { const location = useLocation(); return (
{/* Three trees representing an orchard */} {/* Left tree */} {/* Center tree (larger) */} {/* Right tree */} {/* Ground line */}
Orchard
{children}
); } export default Layout;