Added breadcrumbs

This commit is contained in:
Utkarsh-Patel-13 2025-08-02 22:46:15 -07:00
parent 49a5d048bf
commit c884502737
5 changed files with 290 additions and 3 deletions

View file

@ -0,0 +1,15 @@
"use client";
import { useParams, useRouter } from "next/navigation";
import { useEffect } from "react";
export default function SearchSpaceDashboardPage() {
const router = useRouter();
const { search_space_id } = useParams();
useEffect(() => {
router.push(`/dashboard/${search_space_id}/chats`);
}, []);
return <></>;
}