import { Card, CardContent, CardHeader, CardTitle } from "../ui/card"; import { Info } from "lucide-react"; export function StationInfoView() { const stationInfo = [ { label: "Station ID", value: "STN-001" }, { label: "Location", value: "North Sector A" }, { label: "Latitude", value: "14.5995° N" }, { label: "Longitude", value: "120.9842° E" }, { label: "Altitude", value: "15 m" }, { label: "Installation Date", value: "2024-01-15" }, { label: "Last Maintenance", value: "2026-02-20" }, { label: "Serial Number", value: "DS-2024-001-A" }, ]; return (

Station Information

Station Details
{stationInfo.map((info) => (
{info.label}
{info.value}
))}
); }