diff --git a/growbros-frontend/src/pages/Garten.tsx b/growbros-frontend/src/pages/Garten.tsx
index 00a28f876d08548f1044185b553f09f398bf4cb4..5df99958ce659cdc2a3dd0ffa40024a848d12aee 100644
--- a/growbros-frontend/src/pages/Garten.tsx
+++ b/growbros-frontend/src/pages/Garten.tsx
@@ -1,10 +1,18 @@
-import PlantsOverview from "../components/PlantsOverview";
+
+import DropDownFilter from "../components/DropDownFilter";
 
 function Garten() {
   return (
     <div>
       <h2>Dein Garten</h2>
-      <PlantsOverview />
+      <DropDownFilter
+        topic={"Sortierung der Pflanzen im Garten"}
+        options={[
+          "neueste zuerst",
+          "als nächstes anpflanzbar",
+          "als nächstes erntbar",
+        ]}
+      />
     </div>
   );
 }