mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-02 20:43:36 +00:00
- Introduced a new Projects Overview link in the sidebar footer for easy navigation. - Added a button for Projects Overview in the dashboard view, enhancing accessibility to project insights. - Updated types to include project overview-related definitions, supporting the new features.
7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import { createFileRoute } from '@tanstack/react-router';
|
|
import { OverviewView } from '@/components/views/overview-view';
|
|
|
|
export const Route = createFileRoute('/overview')({
|
|
component: OverviewView,
|
|
});
|