Remove unused features from starter kit, #35

This commit is contained in:
2025-11-14 12:40:32 +01:00
parent 80da02212d
commit 83644a2a3e
29 changed files with 56 additions and 646 deletions
+1 -9
View File
@@ -6,13 +6,6 @@ export interface Auth {
user: User;
}
export interface BreadcrumbItem {
title: string;
href: string;
}
export type BreadcrumbItemType = BreadcrumbItem;
export interface NavGroup {
title: string;
items: NavItem[];
@@ -26,6 +19,7 @@ export interface NavItem {
isActive?: boolean;
action?: NavAction
}
export interface NavAction {
title: string;
href: NonNullable<InertiaLinkProps['href']>;
@@ -33,10 +27,8 @@ export interface NavAction {
color?: string;
}
export type AppPageProps<T extends Record<string, unknown> = Record<string, unknown>> = T & {
name: string;
quote: { message: string; author: string };
auth: Auth;
sidebarOpen: boolean;
}