feat: Add MapComponent for displaying location on a map and TrackingPage for tracking shipments

This commit is contained in:
2025-07-10 10:55:42 +02:00
parent 32672387a6
commit 8ef7fb9230
3 changed files with 438 additions and 1 deletions

View File

@@ -10,13 +10,15 @@ import {
Bars3Icon as MenuIcon,
XMarkIcon as XIcon,
UserIcon,
ArrowRightOnRectangleIcon as LogoutIcon
ArrowRightOnRectangleIcon as LogoutIcon,
TruckIcon
} from '@heroicons/react/24/outline';
const navigationItems = [
{ name: 'Przekrój terenu', href: '/', icon: HomeIcon },
{ name: 'Siatka', href: '/cross', icon: GridIcon },
{ name: 'Uziomy', href: '/uziomy', icon: LightningBoltIcon },
{ name: 'Śledzenie przesyłek', href: '/tracking', icon: TruckIcon },
];
export default function Layout({ children, title = 'Wastpol' }) {