diff --git a/code/frontend/src/routes/PageDashboard.js b/code/frontend/src/routes/PageDashboard.js
index cf4da58..aa476bf 100644
--- a/code/frontend/src/routes/PageDashboard.js
+++ b/code/frontend/src/routes/PageDashboard.js
@@ -10,48 +10,50 @@ import Radio from "../components/base/Radio"
import Button from "../components/base/Button"
import FormLabelled from "../components/base/FormLabelled"
import FormLabel from "../components/base/formparts/FormLabel"
+import RepositoryEditor from "../components/providers/RepositoryEditor"
+import BoxConditionHashtag from "../components/interactive/BoxConditionHashtag"
+import BoxConditions from "../components/interactive/BoxConditions"
export default function PageDashboard({ children, className, ...props }) {
return (
-
- Create a new repository
-
- Search by zone
- }>
- 🚧 Not implemented.
-
- Search by hashtag
- }>
- 🚧 Not implemented.
-
- Search by time period
- }>
- 🚧 Not implemented.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ Create a new repository
+
+ Search by zone
+ }>
+ 🚧 Not implemented.
+
+
+ Search by time period
+ }>
+ 🚧 Not implemented.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
)
}
diff --git a/code/frontend/src/routes/PageDashboard.module.css b/code/frontend/src/routes/PageDashboard.module.css
index ce700f5..48a6af6 100644
--- a/code/frontend/src/routes/PageDashboard.module.css
+++ b/code/frontend/src/routes/PageDashboard.module.css
@@ -6,8 +6,9 @@
"b c"
"b d"
"b e"
+ "b f"
;
- grid-template-rows: auto 1fr 1fr auto;
+ grid-template-rows: auto auto auto 1fr auto;
grid-gap: 10px;
@@ -31,6 +32,10 @@
grid-area: d;
}
-.CreateDialog {
+.Conditions {
grid-area: e;
-}
\ No newline at end of file
+}
+
+.CreateDialog {
+ grid-area: f;
+}