diff --git a/traque-front/components/team/actionDrawer.jsx b/traque-front/components/team/actionDrawer.jsx
index 321cecf..14ba843 100644
--- a/traque-front/components/team/actionDrawer.jsx
+++ b/traque-front/components/team/actionDrawer.jsx
@@ -1,6 +1,6 @@
import useGame from "@/hook/useGame";
import { useState } from "react"
-import Button from "../util/button";
+import Button, { GreenButton, RedButton } from "../util/button";
import TextInput from "../util/textInput";
export default function ActionDrawer() {
@@ -8,31 +8,40 @@ export default function ActionDrawer() {
const { sendCurrentPosition } = useGame();
return (
-
+

setVisible(!visible)} />
{visible &&
-
-
-
-
-
-
{ console.log(i) }} />
+
+
+ 30min
+ before penalty
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ See target info
+
+
+
+ { console.log(i) }} />
+ Capture target
+
+
+
+ Signal emergency
+
+
+ Log out
}
diff --git a/traque-front/components/util/button.jsx b/traque-front/components/util/button.jsx
index 6f25da2..e9559c0 100644
--- a/traque-front/components/util/button.jsx
+++ b/traque-front/components/util/button.jsx
@@ -1,5 +1,17 @@
export default function Button({ children, ...props }) {
- return (