diff --git a/apps/client/app/lib/types.ts b/apps/client/app/lib/types.ts
index 8958931..9aea22f 100644
--- a/apps/client/app/lib/types.ts
+++ b/apps/client/app/lib/types.ts
@@ -1,3 +1,4 @@
import type { GetVolumeResponse } from "~/api-client";
-export type VolumeStatus = GetVolumeResponse["status"];
+export type Volume = GetVolumeResponse;
+export type VolumeStatus = Volume["status"];
diff --git a/apps/client/app/modules/details/tabs/info.tsx b/apps/client/app/modules/details/tabs/info.tsx
new file mode 100644
index 0000000..7e4a6a0
--- /dev/null
+++ b/apps/client/app/modules/details/tabs/info.tsx
@@ -0,0 +1,22 @@
+import { CreateVolumeForm } from "~/components/create-volume-form";
+import { Card } from "~/components/ui/card";
+import { HealthchecksCard } from "../components/healthchecks-card";
+import type { Volume } from "~/lib/types";
+
+type Props = {
+ volume: Volume;
+};
+
+export const VolumeInfoTabContent = ({ volume }: Props) => {
+ return (
+
+
+
+
+
+
+ Volume Information
+
+
+ );
+};
diff --git a/apps/client/app/routes/details.tsx b/apps/client/app/routes/details.tsx
index 0ce8aab..cb524fb 100644
--- a/apps/client/app/routes/details.tsx
+++ b/apps/client/app/routes/details.tsx
@@ -17,6 +17,8 @@ import { HealthchecksCard } from "~/modules/details/components/healthchecks-card
import type { Route } from "./+types/details";
import { cn } from "~/lib/utils";
import { StatusDot } from "~/components/status-dot";
+import { VolumeInfoTabContent } from "~/modules/details/tabs/info";
+import { Tabs, TabsContent, TabsList, TabsTrigger } from "~/components/ui/tabs";
export const clientLoader = async ({ params }: Route.ClientLoaderArgs) => {
const volume = await getVolume({ path: { name: params.name ?? "" } });
@@ -116,15 +118,17 @@ export default function DetailsPage({ loaderData }: Route.ComponentProps) {
-
-
-
-
-
-
- Volume Information
-
-
+
+
+ Configuration
+ Backups
+ Eplorer
+
+
+
+
+ Change your password here.
+
>
);
}