diff --git a/public/_redirects b/public/_redirects
new file mode 100644
index 0000000..ad37e2c
--- /dev/null
+++ b/public/_redirects
@@ -0,0 +1 @@
+/* /index.html 200
diff --git a/src/common/components/dropdown.jsx b/src/common/components/dropdown.jsx
index ba78a16..7895911 100644
--- a/src/common/components/dropdown.jsx
+++ b/src/common/components/dropdown.jsx
@@ -1,6 +1,7 @@
import { Popover, PopoverButton, PopoverPanel } from "@headlessui/react";
import { useState } from "react";
import { useNavigate } from "react-router-dom";
+
export const Dropdown = ({ label, listMenu }) => {
const navigate = useNavigate();
const [dropdown, setDropdown] = useState(false);
@@ -37,13 +38,13 @@ export const Dropdown = ({ label, listMenu }) => {