diff --git a/src/pages/addItemPage/index.jsx b/src/pages/addItemPage/index.jsx
new file mode 100644
index 0000000..0ac346c
--- /dev/null
+++ b/src/pages/addItemPage/index.jsx
@@ -0,0 +1,161 @@
+import React, { useState, useRef } from "react";
+import { BiSolidDownArrow } from "react-icons/bi";
+
+export default function Index() {
+ const clothes = "whatever";
+ const place = "whatever";
+ const [selectedPhotos, setSelectedPhotos] = useState([]);
+ const [deleteIndices, setDeleteIndices] = useState([]);
+ const fileInputRef = useRef(null);
+
+ const handleFileChange = (e) => {
+ const files = e.target.files;
+ const photoURLs = [...selectedPhotos];
+
+ for (let i = 0; i < files.length; i++) {
+ const photoURL = URL.createObjectURL(files[i]);
+ photoURLs.push(photoURL);
+ }
+
+ setSelectedPhotos(photoURLs);
+ };
+
+ const handleDelete = (index) => {
+ const updatedPhotos = [...selectedPhotos];
+ updatedPhotos.splice(index, 1);
+ setSelectedPhotos(updatedPhotos);
+ setDeleteIndices([...deleteIndices, index]);
+ };
+
+ const handleUploadClick = () => {
+ fileInputRef.current.click();
+ };
+
+ return (
+
+ );
+}
diff --git a/src/pages/reset-password/index.jsx b/src/pages/reset-password/index.jsx
new file mode 100644
index 0000000..3650d21
--- /dev/null
+++ b/src/pages/reset-password/index.jsx
@@ -0,0 +1,64 @@
+import { getAuth, sendPasswordResetEmail } from "firebase/auth";
+import Link from "next/link";
+import { useRouter } from "next/router"; // Import useRouter
+import { useState } from "react";
+
+import Button from "@/components/button/Button";
+
+export default function ResetPasswordForm() {
+ const [email, setEmail] = useState("");
+ const [errorMessage, setErrorMessage] = useState();
+ const router = useRouter(); // Use useRouter
+ const auth = getAuth();
+
+ function handleResetPassword(e) {
+ e.preventDefault();
+ sendPasswordResetEmail(auth, email)
+ .then(() => {
+ router.push("/login"); // Use router.push
+ })
+ .catch((error) => {
+ setErrorMessage(error.message);
+ });
+ }
+
+ return (
+
+
+
+ Reset Password
+
+
+
+
+ Back to Login
+
+
+
+
+ );
+}