"use client" import { useRouter } from "next/navigation" import { ProjectSelectionSection } from "@/components/project-selection-section" import { type SessionContext, saveSession } from "@/lib/api" export default function SelectionPage() { const router = useRouter() const handleSelectionComplete = (session: SessionContext) => { // Save session to storage and navigate to upload page saveSession(session) router.push("/upload") } return (
{/* Header */}

VisionRoad Detection System

Select your project location to begin AI-powered road analysis

{/* Project Selection Section */}
) }