"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

{/* Grub hub link https://www.grubhub.com/restaurant/jefes-mexican-cocina-y-cantina-24188-e-hwy-51-broken-arrow/2735039?pickup=true&rwg_token=AAh05qZCcKFQ2Z7gD1Zk8cKMX6nulMnyaXXy0WFPLpaVJpzOl7Hmg_7_21m5_lqd6Px-CeiFlA0OBrR9wjNyhFbJLOA6sURn_fdyCxIc6A4f4duiviHGfos%3D */} {/* yelp link https://www.yelp.com/biz/jefes-mexican-cocina-and-cantina-broken-arrow */}
); }; export default Footer;