Skip to content

Commit d597dfd

Browse files
committed
chore(apollo-vertex): OverviewCard
1 parent cc0c89b commit d597dfd

8 files changed

Lines changed: 458 additions & 152 deletions

File tree

apps/apollo-vertex/app/layouts/dashboard/page.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@ Use the layout toggle inside the preview to switch between Executive, Operationa
1212
<DashboardTemplate />
1313
</PreviewFullScreen>
1414

15+
<a href="/preview/dashboard" target="_blank" className="text-sm text-primary hover:underline">Open standalone preview →</a>
16+
1517
## Minimal Header Shell
1618

1719
<PreviewFullScreen title="Dashboard layout - minimal shell">
1820
<DashboardTemplate shellVariant="minimal" />
1921
</PreviewFullScreen>
22+
23+
<a href="/preview/dashboard-minimal" target="_blank" className="text-sm text-primary hover:underline">Open standalone preview →</a>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default {
2+
"*": { display: "hidden" },
3+
};
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"use client";
2+
3+
import { DashboardTemplate } from "@/templates/dashboard/DashboardTemplateDynamic";
4+
5+
export default function DashboardMinimalPreviewPage() {
6+
return (
7+
<div className="fixed inset-0 z-50 bg-background">
8+
<DashboardTemplate shellVariant="minimal" />
9+
</div>
10+
);
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"use client";
2+
3+
import { DashboardTemplate } from "@/templates/dashboard/DashboardTemplateDynamic";
4+
5+
export default function DashboardPreviewPage() {
6+
return (
7+
<div className="fixed inset-0 z-50 bg-background">
8+
<DashboardTemplate />
9+
</div>
10+
);
11+
}

0 commit comments

Comments
 (0)