diff --git a/frontend/src/resources/builder/index.tsx b/frontend/src/resources/builder/index.tsx
index aaa02578d..a6791a36b 100644
--- a/frontend/src/resources/builder/index.tsx
+++ b/frontend/src/resources/builder/index.tsx
@@ -1,9 +1,22 @@
import { ResourceCard } from "@layouts/card";
-import { Bot, Cloud, Factory } from "lucide-react";
+import { Bot, Cloud, Factory, History, Settings } from "lucide-react";
import { ResourceUpdates } from "@components/updates/resource";
-import { useAddRecentlyViewed, useRead } from "@hooks";
+import { useAddRecentlyViewed, useRead, useWrite } from "@hooks";
import { Resource } from "@layouts/resource";
import { Link, useParams } from "react-router-dom";
+import { Types } from "@monitor/client";
+import { useState } from "react";
+import { Section } from "@layouts/page";
+import { Button } from "@ui/button";
+import { ConfirmUpdate } from "@components/config/confirm-update";
+import { Configuration } from "@components/config";
+import {
+ Select,
+ SelectContent,
+ SelectItem,
+ SelectTrigger,
+ SelectValue,
+} from "@ui/select";
export const BuilderName = ({ id }: { id: string }) => {
const builders = useRead("ListBuilders", {}).data;
@@ -11,20 +24,6 @@ export const BuilderName = ({ id }: { id: string }) => {
return <>{builder?.name}>;
};
-export const BuilderPage = () => {
- const id = useParams().builderId;
-
- if (!id) return null;
- useAddRecentlyViewed("Builder", id);
-
- return (
-