diff --git a/src/app/export/page.tsx b/src/app/export/page.tsx
new file mode 100644
index 0000000..b678f39
--- /dev/null
+++ b/src/app/export/page.tsx
@@ -0,0 +1,31 @@
+"use client";
+
+import { useState } from "react";
+import { ExportDialog } from "@/components/panels/ExportDialog";
+
+/**
+ * Standalone host page for the bulk export dialog. Kept separate from the main
+ * dashboard so the export flow can be driven and verified end to end.
+ */
+export default function ExportPage() {
+ const [open, setOpen] = useState(false);
+
+ return (
+
+
Resource Data Export
+
+ Export filtered resource-consumption data as CSV, GeoJSON or a zipped
+ shapefile. Large queries are streamed in chunks and written straight to
+ disk.
+