"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 */} Logo

Jefes 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

Follow Us

); }; export default Footer;