"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 NewAnalysisPage() { 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 */}
{/* Premium Header */}

VisionRoad Detection System

{/* Project Selection Section */}
{/* Footer */}

Sentient Geeks Pvt. Ltd.

) }