diff --git a/vibn-frontend/app/[workspace]/project/[projectId]/(home)/logs/page.tsx b/vibn-frontend/app/[workspace]/project/[projectId]/(home)/logs/page.tsx index 8403825..c347be3 100644 --- a/vibn-frontend/app/[workspace]/project/[projectId]/(home)/logs/page.tsx +++ b/vibn-frontend/app/[workspace]/project/[projectId]/(home)/logs/page.tsx @@ -85,59 +85,76 @@ export default function LogsPage() { return (
-
- +
+ +
{loading && !anatomy ? ( - -
- Loading… -
-
+
+ Loading… +
) : live.length === 0 ? ( - } - title="No apps running" - hint="Once you deploy an app, its runtime logs will appear here." - /> +
+ } + title="No apps running" + hint="Once you deploy an app, its runtime logs will appear here." + /> +
) : ( -
+
{/* App Picker Column */}
{live.map((app) => ( @@ -178,12 +195,16 @@ export default function LogsPage() { display: "flex", justifyContent: "space-between", alignItems: "center", - marginBottom: 16, + padding: "12px 20px", + background: THEME.subtleBg, + borderBottom: `1px solid ${THEME.borderSoft}`, + height: "53px", + boxSizing: "border-box", }} >
)} -
+
); } diff --git a/vibn-frontend/components/project/dashboard-sidebar.tsx b/vibn-frontend/components/project/dashboard-sidebar.tsx index 3e9ae56..a55cace 100644 --- a/vibn-frontend/components/project/dashboard-sidebar.tsx +++ b/vibn-frontend/components/project/dashboard-sidebar.tsx @@ -72,16 +72,7 @@ export function DashboardSidebar({ { segment: "plan", label: "Plan Docs", Icon: ClipboardList }, { segment: "code", label: "Codebase", Icon: Code2 }, { segment: "users", label: "Users", Icon: Users }, - { - segment: "data", - label: "Databases", - Icon: Database, - hasChildren: true, - children: databases.map((db) => ({ - segment: `data/tables?db=${db.uuid}`, - label: db.name, - })), - }, + { segment: "data/tables", label: "Databases", Icon: Database }, { segment: "storage", label: "File Storage", Icon: HardDrive }, { segment: "services", label: "Live Servers", Icon: Blocks }, { segment: "domains", label: "Custom Domains", Icon: Globe },