"use client"
import { useRouter } from "next/navigation"
import { ProjectSelectionSection } from "@/components/project-selection-section"
import { SidebarNavigation } from "@/components/sidebar-navigation"
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 (
{/* Sidebar Navigation */}
{/* Main Content */}
{/* Decorative background elements */}
{/* Premium Header */}
VisionRoad Detection System
{/* Project Selection Section */}
{/* Footer */}
)
}