diff --git a/src/pages/page.tsx b/src/pages/page.tsx
index 2a7d2bf..9cc6a0e 100644
--- a/src/pages/page.tsx
+++ b/src/pages/page.tsx
@@ -1,7 +1,7 @@
export default function Home() {
return (
-
diff --git a/src/routes/__root.tsx b/src/routes/__root.tsx
index cc7922e..14e2da2 100644
--- a/src/routes/__root.tsx
+++ b/src/routes/__root.tsx
@@ -1,33 +1,45 @@
-import { Link, Outlet, createRootRoute, useNavigate } from '@tanstack/react-router'
+import { LayoutMain } from '@/modules/layout'
+
+import { Link, Outlet, createRootRoute } from '@tanstack/react-router'
import { TanStackRouterDevtools } from '@tanstack/react-router-devtools'
import { Toaster } from '@/components/ui/sonner'
import { AuthProvider } from '@/pages/auth'
import { TooltipProvider } from '@/components/ui/tooltip'
-import { LayoutMain } from '@/modules/layout'
+import { Home } from 'lucide-react';
export const Route = createRootRoute({
component: RootComponent,
})
+const BaseHeader = (props: { children?: React.ReactNode }) => {
+ if (props.children) {
+ return props.children
+ }
+ return (
+ <>
+
+
+ >
+ )
+}
function RootComponent() {
return (
-
- {/*
-
-
- Home
-
-
-
*/}
+
+
-
-
+
@@ -35,6 +47,5 @@ function RootComponent() {
-
)
}
\ No newline at end of file