diff --git a/src/api/authApi.js b/src/api/authApi.js
index 9f83077..9513f0f 100644
--- a/src/api/authApi.js
+++ b/src/api/authApi.js
@@ -1,10 +1,10 @@
// src/api/authApi.js
-import axios from 'axios';
-import { attachAuthInterceptors } from './attachInterceptors';
+import axios from "axios";
+import { attachAuthInterceptors } from "./attachInterceptors";
const authApi = axios.create({
baseURL: process.env.REACT_APP_API_AUTH,
- headers: { 'Content-Type': 'application/json' }
+ headers: { "Content-Type": "application/json" },
});
attachAuthInterceptors(authApi);
diff --git a/src/components/Footer.js b/src/components/Footer.js
index 4060be1..c5a0b02 100644
--- a/src/components/Footer.js
+++ b/src/components/Footer.js
@@ -1,5 +1,5 @@
-import React from 'react';
-import { useNavigate } from 'react-router-dom';
+import React from "react";
+import { useNavigate } from "react-router-dom";
const Footer = () => {
const navigate = useNavigate();
@@ -14,17 +14,51 @@ const Footer = () => {
Categories
-
-
-
+ -
+
+
+ -
+
+
+ -
+
+
Contact
- - icurfer@gmail.com
- - -
- - -
+ -
+ icurfer@gmail.com
+
+ -
+ -
+
+ -
+
+ icurfer
+
+ {/* - -
*/}
@@ -36,4 +70,4 @@ const Footer = () => {
);
};
-export default Footer;
\ No newline at end of file
+export default Footer;
diff --git a/src/components/Navbar.js b/src/components/Navbar.js
index 578a50a..5bf342a 100644
--- a/src/components/Navbar.js
+++ b/src/components/Navbar.js
@@ -6,7 +6,8 @@ const Navbar = () => {
const navigate = useNavigate();
const { isLoggedIn, logout, user } = useAuth();
- const menuItems = ["home", "about", "posts", "paas", "infra", "tasks"];
+ // const menuItems = ["home", "about", "posts", "paas", "infra", "tasks"];
+ const menuItems = ["home", "about", "posts", "tasks"];
return (