diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..b67a62f
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "editor.fontFamily": "'JetBrains Mono', 'monospace', monospace"
+}
\ No newline at end of file
diff --git a/components/AddCategoryPage/index.jsx b/components/AddCategoryPage/index.jsx
deleted file mode 100644
index bbb2d55..0000000
--- a/components/AddCategoryPage/index.jsx
+++ /dev/null
@@ -1,14 +0,0 @@
-// import React from "react";
-// import { useState } from "react";
-// import AddCategory from "../modules/AddCategory";
-// import PageCard from "../modules/__modules__/Card/PageCard";
-
-// const AddCategoryPage = () => {
-// const [isTopNav, setIsTopNav] = useState(false);
-// return (
-//
-//
-//
-// );
-// };
-// export default AddCategoryPage;
diff --git a/components/AddCategoryPage/index.tsx b/components/AddCategoryPage/index.tsx
new file mode 100644
index 0000000..a3a93ed
--- /dev/null
+++ b/components/AddCategoryPage/index.tsx
@@ -0,0 +1,15 @@
+import React from "react";
+import { useState } from "react";
+import AddCategory from "../modules/AddCategory";
+import PageCard from "../modules/__modules__/Card/PageCard";
+
+const AddCategoryPage = () => {
+ const [isTopNav, setIsTopNav] = useState(false);
+
+ return (
+
+
+
+ );
+};
+export default AddCategoryPage;
diff --git a/components/modules/AddCategory/index.jsx b/components/modules/AddCategory/index.jsx
deleted file mode 100644
index cbf5f2a..0000000
--- a/components/modules/AddCategory/index.jsx
+++ /dev/null
@@ -1,55 +0,0 @@
-// import React from "react";
-// import PropTypes from "prop-types";
-
-// const AddCategory = () => {
-// return (
-// <>
-//
-//
-//
-// Add Categories
-//
-//
-//
-//
-// >
-// );
-// };
-
-// AddCategory.propTypes = {
-// isTopNav: PropTypes.bool.isRequired,
-// };
-// export default AddCategory;
diff --git a/components/modules/AddCategory/index.tsx b/components/modules/AddCategory/index.tsx
new file mode 100644
index 0000000..5e95157
--- /dev/null
+++ b/components/modules/AddCategory/index.tsx
@@ -0,0 +1,52 @@
+import React from "react";
+
+const AddCategory = () => {
+ return (
+ <>
+
+
+
+ Add Categories
+
+
+
+
+ >
+ );
+};
+
+
+export default AddCategory;
diff --git a/pages/admin/addcategory.js b/pages/admin/addcategory.js
deleted file mode 100644
index 15d1084..0000000
--- a/pages/admin/addcategory.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import React from "react";
-// import AddCategoryPage from '../../components/AddCategoryPage'
-
-const addcategory = () => {
- // return (
- //
- // )
- <>>;
-};
-
-export default addcategory;
diff --git a/pages/admin/addcategory.tsx b/pages/admin/addcategory.tsx
new file mode 100644
index 0000000..accbf8f
--- /dev/null
+++ b/pages/admin/addcategory.tsx
@@ -0,0 +1,13 @@
+import React from "react";
+import AddCategoryPage from '../../components/AddCategoryPage'
+
+const addcategory = () => {
+ return (
+
+ )
+
+};
+
+export default addcategory;