+
);
diff --git a/src/sections/Footer.jsx b/src/sections/Footer.jsx
new file mode 100644
index 0000000..6630fb6
--- /dev/null
+++ b/src/sections/Footer.jsx
@@ -0,0 +1,23 @@
+import { mySocials } from "../constants";
+const Footer = () => {
+ return (
+
+
+
+
Terms & Conditions
+
|
+
Privacy Policy
+
+
+ {mySocials.map((social, index) => (
+
+
+
+ ))}
+
+ © 2025 Ali. All rights reserved.
+
+ );
+};
+
+export default Footer;
\ No newline at end of file
diff --git a/src/sections/Navbar.jsx b/src/sections/Navbar.jsx
index 9755358..d2582f1 100644
--- a/src/sections/Navbar.jsx
+++ b/src/sections/Navbar.jsx
@@ -1,46 +1,47 @@
-import React, { useState } from "react";
+import { useState } from "react";
import { motion } from "motion/react";
-const Navigation = () => {
+function Navigation() {
return (
);
-};
+}
const Navbar = () => {
const [isOpen, setIsOpen] = useState(false);
-
return (
-
+
{isOpen && (
+ transition={{ duration: 1 }}
+ >
@@ -68,4 +70,4 @@ const Navbar = () => {
);
};
-export default Navbar;
+export default Navbar;
\ No newline at end of file