diff --git a/Websites/jefes-nextjs/components/Footer/footer.tsx b/Websites/jefes-nextjs/components/Footer/footer.tsx
index f7cfcb1..860ff00 100644
--- a/Websites/jefes-nextjs/components/Footer/footer.tsx
+++ b/Websites/jefes-nextjs/components/Footer/footer.tsx
@@ -1,11 +1,102 @@
-import React from 'react'
+"use client";
+import React from "react";
+import Link from "next/link";
+import { AiOutlineInstagram, AiOutlineFacebook } from "react-icons/ai";
+import { FaTiktok } from "react-icons/fa";
+import classnames from "classnames";
+import { usePathname } from "next/navigation";
+import Image from "next/image";
const Footer = () => {
+ const currentPath = usePathname();
+ const nav = [
+ { label: "HOME", href: "/" },
+ { label: "MENU", href: "/menu" },
+ { label: "ABOUT", href: "/about-us" },
+ { label: "CONTACT", href: "/contact" },
+ ];
+
return (
-
+
+
+
+
+ {/* logo */}
+
+
+
+
+
+ Jefe's Mexican Cocina Y Cantina serves the best Mexican food in
+ Broken Arrow, OK.
+
+
+
+
Pages
+
+
+
+ {nav.map((link) => (
+
+ {link.label}
+
+ ))}
+
+
+
+
+
+
+ Store Hours
+
+
+
+
+
Monday - Thursday:
+
11:00am - 9:00pm
+
+
+
Friday - Saturday:
+
11:00am - 9:30pm
+
+
+
Sunday:
+
11:00am - 8:00pm
+
+
+
+
+
+
- )
-}
+ );
+};
-export default Footer
\ No newline at end of file
+export default Footer;