-
- Demos
+
+ Home
Find Jobs
@@ -188,3 +188,4 @@ const Navbar = () => {
};
export default Navbar;
+
diff --git a/client/src/pages/Companies.jsx b/client/src/pages/Companies.jsx
index d235d85..fcac670 100644
--- a/client/src/pages/Companies.jsx
+++ b/client/src/pages/Companies.jsx
@@ -2,7 +2,6 @@ import React, { useEffect, useState } from "react";
import { useLocation, useNavigate } from "react-router-dom";
import { CompanyCard, CustomButton, Header, ListBox } from "../components";
import { companies } from "../utils/data";
-import { BiArrowToTop } from "react-icons/bi";
const Companies = () => {
const [page, setPage] = useState(1);
@@ -17,11 +16,22 @@ const Companies = () => {
const location = useLocation();
const navigate = useNavigate();
- const handleSearchSubmit = () => {};
- const handleShowMore = () => {};
+ const handleSearchSubmit = () => { };
+ const handleShowMore = () => { };
return (
- {/* Top Scroll Btn */}
-
{window.scrollTo({ top: 0, left: 0, behavior: "smooth"});}}/>
);
};
diff --git a/client/vercel.json b/client/vercel.json
new file mode 100644
index 0000000..520bf7a
--- /dev/null
+++ b/client/vercel.json
@@ -0,0 +1,5 @@
+{
+ "rewrites": [
+ {"source": "/(.*)", "destination": "/"}
+ ]
+}
diff --git a/package-lock.json b/package-lock.json
index ae4e846..7eb8819 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -47,4 +47,5 @@
}
}
}
+ "packages": {}
}
diff --git a/server/package.json b/server/package.json
index 56c9c0d..74df09c 100644
--- a/server/package.json
+++ b/server/package.json
@@ -6,6 +6,7 @@
"type": "module",
"scripts": {
"start": "nodemon server.js",
+ "dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",