import { Card } from "@/components/ui/card"; import { LayersIcon, RoadHorizonIcon, MapPinIcon } from "@/components/ui/phosphor-icons"; interface LandStatsCardsProps { aggregateStats: { totalParcelArea: string; totalRoadLength: string; activeMarkers: number; }; } export function LandStatsCards({ aggregateStats }: LandStatsCardsProps) { return ( <>
Total Parcel Area
{aggregateStats.totalParcelArea} Ha
Sum of all registered polygon parcels
Total Road Length
{aggregateStats.totalRoadLength} km
Sum of all measured road/line segments
Active Markers
{aggregateStats.activeMarkers} Markers
Land pins, survey flags, protected zones & registries
); }