diff --git a/frontend/app/(topbar)/data-pipeline/create/page.tsx b/frontend/app/(sidebar)/data-pipeline/create/page.tsx similarity index 100% rename from frontend/app/(topbar)/data-pipeline/create/page.tsx rename to frontend/app/(sidebar)/data-pipeline/create/page.tsx diff --git a/frontend/app/(topbar)/data-pipeline/page.tsx b/frontend/app/(sidebar)/data-pipeline/page.tsx similarity index 100% rename from frontend/app/(topbar)/data-pipeline/page.tsx rename to frontend/app/(sidebar)/data-pipeline/page.tsx diff --git a/frontend/app/(topbar)/data-pipeline/property-listings/page.tsx b/frontend/app/(sidebar)/data-pipeline/property-listings/page.tsx similarity index 100% rename from frontend/app/(topbar)/data-pipeline/property-listings/page.tsx rename to frontend/app/(sidebar)/data-pipeline/property-listings/page.tsx diff --git a/frontend/app/(topbar)/documentation/loading.tsx b/frontend/app/(sidebar)/documentation/loading.tsx similarity index 100% rename from frontend/app/(topbar)/documentation/loading.tsx rename to frontend/app/(sidebar)/documentation/loading.tsx diff --git a/frontend/app/(topbar)/documentation/models/page.tsx b/frontend/app/(sidebar)/documentation/models/page.tsx similarity index 100% rename from frontend/app/(topbar)/documentation/models/page.tsx rename to frontend/app/(sidebar)/documentation/models/page.tsx diff --git a/frontend/app/(topbar)/documentation/page.tsx b/frontend/app/(sidebar)/documentation/page.tsx similarity index 100% rename from frontend/app/(topbar)/documentation/page.tsx rename to frontend/app/(sidebar)/documentation/page.tsx diff --git a/frontend/app/(sidebar)/layout.tsx b/frontend/app/(sidebar)/layout.tsx new file mode 100644 index 0000000..39c730d --- /dev/null +++ b/frontend/app/(sidebar)/layout.tsx @@ -0,0 +1,16 @@ +"use client"; +import Sidebar from "@/components/sidebar"; + +export default function AppLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( +