New booking panel

This commit is contained in:
Jose Selesan
2026-05-05 10:16:38 -03:00
parent 546a020003
commit c089215835
19 changed files with 1991 additions and 1072 deletions

View File

@@ -23,5 +23,5 @@ function RootRoute() {
<Outlet />
</div>
</Layout>
)
}
);
}

View File

@@ -1,6 +1,6 @@
import { RootLayout } from '@/features/layout/root-layout';
import { createFileRoute } from '@tanstack/react-router';
import { Outlet } from '@tanstack/react-router';
export const Route = createFileRoute('/_app')({
component: RootLayout,
component: Outlet,
});