diff --git a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx
index 3c2f5d5..1a73c2b 100644
--- a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx
+++ b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx
@@ -11,6 +11,7 @@ import { AiOutlineInstagram, AiOutlineFacebook } from "react-icons/ai";
import { FaTiktok } from "react-icons/fa";
import { RiCellphoneLine } from "react-icons/ri";
import { FaPhone } from "react-icons/fa6";
+import StoreHours from "../StoreHours/StoreHours";
const NavBar = () => {
const currentPath = usePathname();
@@ -69,10 +70,13 @@ const NavBar = () => {
: "hidden"
}
>
+
{
+ var week = [
+ { day: "Sunday", hours: "11:00am - 8:00pm" },
+ { day: "Monday", hours: "11:00am - 9:00pm" },
+ { day: "Tuesday", hours: "11:00am - 9:00pm" },
+ { day: "Wednesday", hours: "11:00am - 9:00pm" },
+ { day: "Thursday", hours: "11:00am - 9:00pm" },
+ { day: "Friday", hours: "11:00am - 9:30pm" },
+ { day: "Saturday", hours: "11:00am - 9:30pm" },
+ ];
+
+ var months = [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December",
+ ];
+
+ function getHoursByDay(day: String) {
+ const foundDay = week.find((item) => item.day === day);
+ return foundDay ? foundDay.hours : "Hours not found";
+ }
+ var curr_day = new Date().toLocaleDateString("en-US", { weekday: "long" });
+
+ var hours = getHoursByDay(curr_day);
+
+ return (
+ <>
+
+ >
+ );
+};
+export default StoreHours;
diff --git a/Websites/jefes-nextjs/app/gallery/page.tsx b/Websites/jefes-nextjs/app/gallery/page.tsx
index 98f48ba..e312edd 100644
--- a/Websites/jefes-nextjs/app/gallery/page.tsx
+++ b/Websites/jefes-nextjs/app/gallery/page.tsx
@@ -2,7 +2,6 @@ import React from "react";
import { useState } from "react";
import { BsChevronCompactLeft, BsChevronCompactRight } from "react-icons/bs";
import { RxDotFilled } from "react-icons/rx";
-import { EmblaCarousel } from "./carousel";
import Image from "next/image";
import WSPGallery from "../components/WSPGallery/page";
diff --git a/Websites/jefes-nextjs/components/Footer/footer.tsx b/Websites/jefes-nextjs/components/Footer/footer.tsx
index 860ff00..b51aba5 100644
--- a/Websites/jefes-nextjs/components/Footer/footer.tsx
+++ b/Websites/jefes-nextjs/components/Footer/footer.tsx
@@ -33,7 +33,7 @@ const Footer = () => {
- Jefe's Mexican Cocina Y Cantina serves the best Mexican food in
+ Jefes Mexican Cocina Y Cantina serves the best Mexican food in
Broken Arrow, OK.