mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-02 08:33:36 +00:00
- Introduced a command palette for enhanced navigation and command execution. - Added a new dashboard view with project management features, including project cards and an empty state for new users. - Updated routing to include the new dashboard view and integrated it with the existing layout. - Enhanced the app store to manage pinned projects and GitHub cache for issues and pull requests. These changes improve user experience by streamlining project management and navigation within the application.
7 lines
211 B
TypeScript
7 lines
211 B
TypeScript
import { createFileRoute } from '@tanstack/react-router';
|
|
import { DashboardView } from '@/components/views/dashboard-view';
|
|
|
|
export const Route = createFileRoute('/dashboard')({
|
|
component: DashboardView,
|
|
});
|