23 lines
673 B
TypeScript
23 lines
673 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import { CreateVolumePage } from "~/client/modules/volumes/routes/create-volume";
|
|
|
|
export const Route = createFileRoute("/(dashboard)/volumes/create")({
|
|
component: RouteComponent,
|
|
errorComponent: () => <div>Failed to load volume creation</div>,
|
|
staticData: {
|
|
breadcrumb: () => [{ label: "Volumes", href: "/volumes" }, { label: "Create" }],
|
|
},
|
|
head: () => ({
|
|
meta: [
|
|
{ title: "Zerobyte - Create Volume" },
|
|
{
|
|
name: "description",
|
|
content: "Create a new storage volume with automatic mounting and health checks.",
|
|
},
|
|
],
|
|
}),
|
|
});
|
|
|
|
function RouteComponent() {
|
|
return <CreateVolumePage />;
|
|
}
|