Const
Home Route Configuration
Defines the application's main dashboard route with:
This route provides the primary monitoring interface for real-time Spotify playback tracking and status overview.
export const HomeRoute = createRoute({ getParentRoute: () => RootRoute, path: "/", component: () => ( <Suspense fallback={<PageLoader />}> <HomePage /> </Suspense> ),}); Copy
export const HomeRoute = createRoute({ getParentRoute: () => RootRoute, path: "/", component: () => ( <Suspense fallback={<PageLoader />}> <HomePage /> </Suspense> ),});
Home Route Configuration
Defines the application's main dashboard route with:
This route provides the primary monitoring interface for real-time Spotify playback tracking and status overview.