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 fruit trees representing an orchard */} {/* Left tree - rounded canopy */} {/* Center tree - larger rounded canopy */} {/* Right tree - rounded canopy */} {/* Ground */}
Orchard
{children}
); } export default Layout;