import { StationDetailPage } from "@/components/weather/station-detail-page"; export default async function StationPage({ params }: { params: Promise<{ id: string }> }) { const { id } = await params; return ; }