compile update
This commit is contained in:
parent
7d85d90e13
commit
ac195be7ed
@ -2,4 +2,7 @@
|
||||
z-index: -10;
|
||||
filter: brightness(.17);
|
||||
align-items: baseline;
|
||||
}
|
||||
.logo{
|
||||
margin: 0 auto;
|
||||
}
|
||||
@ -7,7 +7,7 @@ import classnames from "classnames";
|
||||
import { GiHamburgerMenu } from "react-icons/gi";
|
||||
import { MdOutlineRestaurantMenu } from "react-icons/md";
|
||||
import Reserve from "./reserveButton";
|
||||
import './NavBar.css'
|
||||
import "./NavBar.css";
|
||||
|
||||
const NavBar = () => {
|
||||
const currentPath = usePathname();
|
||||
@ -16,33 +16,34 @@ const NavBar = () => {
|
||||
|
||||
// Create an array to hold the list items
|
||||
const links = [
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "HOME", href: "/" },
|
||||
{ label: "MENU", href: "/menu" },
|
||||
{ label: "GALLERY", href: "/gallery" },
|
||||
];
|
||||
// Create an array to hold the list items
|
||||
const links2 = [
|
||||
{ label: "About", href: "/about-us" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "ABOUT", href: "/about-us" },
|
||||
{ label: "REVIEWS", href: "/reviews" },
|
||||
{ label: "CONTACT", href: "/contact" },
|
||||
// { label: "Dashboard", href: "/dashboard" },
|
||||
{ label: "Users", href: "/users" },
|
||||
// { label: "RESERVE", href: "/reservations" },
|
||||
// { label: "Issues", href: "/issues" },
|
||||
];
|
||||
|
||||
return (
|
||||
<nav className="">
|
||||
{/* <center className="text-base-100">O</center> */}
|
||||
<div className="flex items-center relative justify-center p-10">
|
||||
<ul className="hover:cursor-pointer hidden md:block space-x-4 text-2xl font-sans antialiased">
|
||||
{/* <center className="text-accent bg-secondary">O</center> */}
|
||||
<div className="flex items-center relative justify-center p-10 mx-auto">
|
||||
<ul className="hover:cursor-pointer hidden md:block space-x-4 text-xl font-sans antialiased">
|
||||
{links.map((link) => (
|
||||
<Link
|
||||
key={link.href}
|
||||
// className={`${link.href === currentPath ? 'text-zinc-900' : 'text-zinc-500 hover:text-zinc-800'}`}
|
||||
// replace with classnames object instead
|
||||
className={classnames({
|
||||
"border-b border-jefesRed text-base-100":
|
||||
"border-b-2 border-jefesRed text-accent":
|
||||
link.href === currentPath,
|
||||
"text-base-100": link.href !== currentPath,
|
||||
"text-accent": link.href !== currentPath,
|
||||
"hover:text-jefesRed": true,
|
||||
})}
|
||||
href={link.href}
|
||||
@ -51,26 +52,28 @@ const NavBar = () => {
|
||||
</Link>
|
||||
))}
|
||||
</ul>
|
||||
{/* logo */}
|
||||
<Link href="/">
|
||||
<Image
|
||||
src="/logo.svg"
|
||||
width={0}
|
||||
height={0}
|
||||
sizes="200vw"
|
||||
style={{ width: "55%", height: "auto" }}
|
||||
style={{ width: "50%", height: "auto" }}
|
||||
alt="Logo"
|
||||
className="hidden md:block center mx-auto"
|
||||
className="hidden md:block logo"
|
||||
/>
|
||||
<Image
|
||||
src="/logo.svg"
|
||||
width={0}
|
||||
height={0}
|
||||
sizes="100vw"
|
||||
sizes="50vw"
|
||||
style={{ width: "50%", height: "auto" }}
|
||||
alt="Logo"
|
||||
className="block md:hidden"
|
||||
/>
|
||||
</Link>
|
||||
|
||||
<ul className="hover:cursor-pointer hidden md:block space-x-4 text-xl font-sans antialiased">
|
||||
{links2.map((link) => (
|
||||
<Link
|
||||
@ -78,9 +81,9 @@ const NavBar = () => {
|
||||
// className={`${link.href === currentPath ? 'text-zinc-900' : 'text-zinc-500 hover:text-zinc-800'}`}
|
||||
// replace with classnames object instead
|
||||
className={classnames({
|
||||
"border-b border-jefesRed text-base-100":
|
||||
"border-b-2 border-jefesRed text-accent":
|
||||
link.href === currentPath,
|
||||
"text-base-100": link.href !== currentPath,
|
||||
"text-accent": link.href !== currentPath,
|
||||
"hover:text-jefesRed": true,
|
||||
})}
|
||||
href={link.href}
|
||||
@ -89,7 +92,10 @@ const NavBar = () => {
|
||||
</Link>
|
||||
))}
|
||||
</ul>
|
||||
<Reserve />
|
||||
{/* Reservation button */}
|
||||
<div className="right-2 hidden xl:block absolute overflow-hidden">
|
||||
<Reserve />
|
||||
</div>
|
||||
<div className="overflow-hidden">
|
||||
<Image
|
||||
src="/header02.webp"
|
||||
@ -104,32 +110,32 @@ const NavBar = () => {
|
||||
alt="nav image"
|
||||
fill
|
||||
style={{ objectFit: "cover" }}
|
||||
className="brightness-0 block md:hidden"
|
||||
className="block md:hidden nav_background"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="block md:hidden">
|
||||
<GiHamburgerMenu
|
||||
className="text-base-100 text-4xl space-x-2 absolute top-3 right-3"
|
||||
className="text-accent text-4xl space-x-2 absolute top-3 right-3"
|
||||
onClick={() => set_toggle_menu(true)}
|
||||
/>
|
||||
{toggle_menu && (
|
||||
<div className="navbar_small_screen_overlay flex_center slide_bottom">
|
||||
<MdOutlineRestaurantMenu
|
||||
fontSize={27}
|
||||
className="text-base-100 absolute top-3 right-3 text-4xl"
|
||||
className="text-accent absolute top-3 right-3 text-4xl"
|
||||
onClick={() => set_toggle_menu(false)}
|
||||
/>
|
||||
<ul className="w-full flex flex-col text-2xl col-auto gap-4 grid-cols-1 table-auto absolute">
|
||||
<ul className="flex flex-col text-2xl col-auto gap-4 grid-cols-1 table-auto absolute">
|
||||
{links.map((link) => (
|
||||
<Link
|
||||
key={link.href}
|
||||
// className={`${link.href === currentPath ? 'text-zinc-900' : 'text-zinc-500 hover:text-zinc-800'}`}
|
||||
// replace with classnames object instead
|
||||
className={classnames({
|
||||
"border-b border-jefesRed text-base-100":
|
||||
"border-b border-jefesRed text-accent":
|
||||
link.href === currentPath,
|
||||
"text-base-100": link.href !== currentPath,
|
||||
"text-accent": link.href !== currentPath,
|
||||
// "hover:text-jefesRed": true,
|
||||
})}
|
||||
href={link.href}
|
||||
|
||||
@ -1,11 +1,37 @@
|
||||
import React from 'react'
|
||||
import React from "react";
|
||||
import Image from "next/image";
|
||||
|
||||
const Reserve = () => {
|
||||
return (
|
||||
<div className='text-base-100 right-2 absolute hidden md:block'>
|
||||
<button className='btn btn-primary'>Reserve Today!</button>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
<div>
|
||||
<div className="right-2 hidden xl:block">
|
||||
<button className="btn btn-primary text-lg text-accent">
|
||||
<span className="flex flex-col">
|
||||
<span className="flex flex-col">ORDER ONLINE</span>
|
||||
</span>
|
||||
<Image
|
||||
src="/fork.svg"
|
||||
width={20}
|
||||
height={20}
|
||||
alt="fork"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
<div className="flex top-2 hidden md:block xl:hidden">
|
||||
<button className="btn btn-primary text-md text-accent">
|
||||
<span className="">
|
||||
<span className="">ORDER ONLINE</span>
|
||||
</span>
|
||||
<Image
|
||||
src="/fork.svg"
|
||||
width={10}
|
||||
height={10}
|
||||
alt="fork"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Reserve
|
||||
export default Reserve;
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
.gun_menu{
|
||||
transform: rotate(0.75turn);
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
@ -1,64 +1,26 @@
|
||||
import React from "react";
|
||||
import Image from "next/image";
|
||||
import './appetizers.css'
|
||||
import "./appetizers.css";
|
||||
|
||||
const Appetizers = () => {
|
||||
return (
|
||||
<div className="flex flex-col justify-center">
|
||||
<center >Starter Menu</center>
|
||||
<Image
|
||||
src="/gun01.svg"
|
||||
alt="gun icon for decor"
|
||||
className="items-center m-6 mx-auto gun_menu"
|
||||
width="61"
|
||||
height="101"
|
||||
/>
|
||||
<div className="text-2xl">
|
||||
<h2 className="text-center">Nachos</h2>
|
||||
<div className="decor" aria-hidden="true">
|
||||
|
||||
<div className="right"></div>
|
||||
</div>
|
||||
<div className="flex flex-col">
|
||||
<div className="text-4xl flex flex-row text-primary antialiased font-bold font-sans justify-center mx-auto">
|
||||
<Image
|
||||
src="/gun01.svg"
|
||||
alt="gun icon for decor"
|
||||
className="m-6 gun_menu"
|
||||
width={100}
|
||||
height={100}
|
||||
/>
|
||||
<div className="w-10 h-0.5 bg-secondary "></div>
|
||||
<div>Appetizers</div>
|
||||
</div>
|
||||
<ul className="text-xl flex flex-col">
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Shredded</h4>
|
||||
<span>- $10</span>
|
||||
</div>
|
||||
<p>Chicken or beef with creamy white queso sauce.</p>
|
||||
<div>
|
||||
<li className="">
|
||||
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Fajita Nachos</h4>
|
||||
<span>- $11</span>
|
||||
</div>
|
||||
<p>
|
||||
Grilled steak or chicken with onions, tomatoes, and bell peppers.
|
||||
</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Carnita Nachos</h4>
|
||||
<span>- $12</span>
|
||||
</div>
|
||||
<p>
|
||||
Crispy tortilla chips topped with beans, creamy white queso sauce,
|
||||
carnitas, lettuce, Pico de Gallo and sour cream.
|
||||
</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Nachos Supreme</h4>
|
||||
<span>- $12</span>
|
||||
</div>
|
||||
<p>
|
||||
Crispy tortilla chips topped with beans, creamy white queso sauce,
|
||||
your choice of beef or chicken, lettuce, Pico de Gallo, guacamole,
|
||||
and sour cream.
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
@ -4,9 +4,9 @@ import React from 'react'
|
||||
const layout = ({ children }: { children: React.ReactNode }) => {
|
||||
return (
|
||||
<div className='flex w-full flex-col md:flex-row md:overflow-hidden'>
|
||||
<div className="w-full flex-none md:w-64">
|
||||
{/* <div className="w-full flex-none md:w-64">
|
||||
|
||||
</div>
|
||||
</div> */}
|
||||
<div className="flex-grow p-6 md:overflow-y-auto md:p-12">{children}</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
@ -3,504 +3,9 @@ import Appetizers from "./Appetizers/page";
|
||||
|
||||
const menu = () => {
|
||||
return (
|
||||
<div>
|
||||
<div className="">
|
||||
<Appetizers />
|
||||
|
||||
|
||||
<div className="heading">
|
||||
<h2>Soups & Salads</h2>
|
||||
<div className="decor" aria-hidden="true">
|
||||
<div className="left"></div>
|
||||
<img
|
||||
src="/gun01.svg"
|
||||
alt="gun icon for decor"
|
||||
className=""
|
||||
width="61"
|
||||
height="101"
|
||||
/>
|
||||
<div className="right"></div>
|
||||
</div>
|
||||
</div>
|
||||
<ul className="items">
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Tortilla Soup</h4>
|
||||
<span>- cup - $4 | bowl - $6</span>
|
||||
</div>
|
||||
<p>
|
||||
Chicken, corn, and black beans topped with seasoned tortilla strips.
|
||||
</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Guacamole Salad</h4>
|
||||
<span>- $6</span>
|
||||
</div>
|
||||
<p>
|
||||
Crispy lettuce topped with a side of guacamole, sour cream, and Pico
|
||||
de Gallo.
|
||||
</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Chepesalad</h4>
|
||||
<span>- $12</span>
|
||||
</div>
|
||||
<p>
|
||||
Grilled chicken or steak with shrimp(4), lettuce, tomatoes, queso
|
||||
fresco, corn,topped withavocado slices.
|
||||
</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Southwest Salad</h4>
|
||||
<span>- $10</span>
|
||||
</div>
|
||||
<p>
|
||||
Grilled chicken, lettuce, corn, black beans, avocado, Picode Gallo,
|
||||
topped with tortilla strips and served with salsa.
|
||||
</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Taco Salad</h4>
|
||||
<span>- $8</span>
|
||||
</div>
|
||||
<p>
|
||||
Ground beef or chicken with shredded cheese and guacamole salad
|
||||
topped in a deep-fried flour tortilla bowl. Served with a side of
|
||||
rice and beans. <span>Fajita style add $2</span>{" "}
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div className="heading">
|
||||
<h2 className="bev-h2">Chimichangas</h2>
|
||||
<p className="kids-para">
|
||||
Deep fried burrito served with rice and refried beans! Your choice of
|
||||
the following:
|
||||
</p>
|
||||
<div className="decor" aria-hidden="true">
|
||||
<div className="left"></div>
|
||||
<img
|
||||
src="/gun01.svg"
|
||||
alt="gun icon for decor"
|
||||
className=""
|
||||
width="61"
|
||||
height="101"
|
||||
/>
|
||||
<div className="right"></div>
|
||||
</div>
|
||||
</div>
|
||||
<ul className="items items-small">
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>GROUND BEEF, SHREDDED CHICKEN, OR SHREDDED BEEF</h4>
|
||||
<span>- $19</span>
|
||||
</div>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Fajita Chimi</h4>
|
||||
<span>- $12</span>
|
||||
</div>
|
||||
<p>Grilled chicken or steak, onions, tomatoes, and bell peppers.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Chimichanga Del Mar</h4>
|
||||
<span>- $13</span>
|
||||
</div>
|
||||
<p>Shrimp, crab, onions, tomatoes and bell peppers.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Pollo-T Chimi</h4>
|
||||
<span>- $10</span>
|
||||
</div>
|
||||
<p>Grilled chicken strips, and chorizo.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div className="heading heading-2">
|
||||
<div className="flex">
|
||||
<h2 className="bev-h2">Jefe's Taqueria</h2>
|
||||
<div className="flex">
|
||||
<span>- $11</span>
|
||||
<img src="/star.svg" width="25" height="25" alt="star" />
|
||||
</div>
|
||||
</div>
|
||||
<p className=""> <span className='detail'>Asada | Chicken | Chorizo | Carnitas | Al Pastor | Shrimp | Fish |
|
||||
Barbacoa</span> </p>
|
||||
<div className="mb-3" >
|
||||
<h4>5 Street tacos with your choice of protein topped with cilantro and onions.
|
||||
Served with our signature salsas. Add rice and refried beans $2.</h4>
|
||||
</div>
|
||||
<div className="decor" aria-hidden="true">
|
||||
<div className="left"></div>
|
||||
<img src="/gun01.svg" alt="gun icon for decor" className="" width="61" height="101" />
|
||||
<div className="right"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div className="heading">
|
||||
<h2 className="bev-h2">Tortas</h2>
|
||||
<p className="kids-para">Mexican sandwich served with french-fries
|
||||
and a side of jalapenos!</p>
|
||||
<div className="decor" aria-hidden="true">
|
||||
<div className="left"></div>
|
||||
<img src="/gun01.svg" alt="gun icon for decor" className="" width="61" height="101" />
|
||||
<div className="right"></div>
|
||||
</div>
|
||||
</div>
|
||||
<ul className="items">
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Jamon</h4>
|
||||
<span>- $8</span>
|
||||
</div>
|
||||
<p>Ham, mayo, lettuce, tomato, onions,
|
||||
avocado, queso fresco.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Hawaiana</h4>
|
||||
<span>- $8</span>
|
||||
</div>
|
||||
<p>Ham, pineapple, mayo, lettuce, tomato,
|
||||
onions, avocado, and queso fresco.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Cubana</h4>
|
||||
<span>- $10</span>
|
||||
</div>
|
||||
<p>Chorizo, ham, hot-dog, mayo, lettuce,
|
||||
tomato, onions, avocado, and queso
|
||||
fresco.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Milaneza</h4>
|
||||
<span>- $10</span>
|
||||
</div>
|
||||
<p>Breaded chicken or steak, mayo lettuce,
|
||||
tomato, onions, avocado, and queso fresco.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Alemana</h4>
|
||||
<span>- $10</span>
|
||||
</div>
|
||||
<p>Chorizo, ham, milaneza, hot-dog,
|
||||
pineapple, mayo, lettuce, onions, avocado,
|
||||
queso fresco.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Build Your Own</h4>
|
||||
<span>- $12</span>
|
||||
</div>
|
||||
<p>Contains mayo, lettuce, tomato, onions,
|
||||
avocado, queso frescoand jalapeños. <span className="detail">Choose up to 3 proteins: <span
|
||||
className="inner">Asada, al Pastor, ham, grilled
|
||||
chicken, chorizo, bacon, hot-dog, milaneza, or carnitas.</span></span></p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div className="heading">
|
||||
<h2 className="bev-h2">Burritos</h2>
|
||||
<p className="kids-para">12” Flour tortilla filled with your choice of protein. Topped with queso, red or green
|
||||
sauce. Served with Guacamole salad!</p>
|
||||
<div className="decor" aria-hidden="true">
|
||||
<div className="left"></div>
|
||||
<img src="/gun01.svg" alt="gun icon for decor" className="" width="61" height="101" />
|
||||
<div className="right"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ul className="items">
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Al Pastor</h4>
|
||||
<span>- $11</span>
|
||||
</div>
|
||||
<p>Marinated pork, rice, beans, and cheese.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Carnitas</h4>
|
||||
<span>- $11</span>
|
||||
</div>
|
||||
<p>Deep fried pork, grilled onions, and avocado.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Chicken</h4>
|
||||
<span>- $10</span>
|
||||
</div>
|
||||
<p>Grilled chicken, rice, beans, and cheese.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Burritos Vaquero</h4>
|
||||
<div className="flex">
|
||||
<span>- $11</span>
|
||||
<img src="/star.svg" alt="" width="25" height="25"/>
|
||||
</div>
|
||||
</div>
|
||||
<p>Grilled chicken, rice, beans, and cheese.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Kevin's Burrito</h4>
|
||||
<span>- $12</span>
|
||||
</div>
|
||||
<p>Grilled chicken or steak, bell peppers, onions,
|
||||
and tomatoes.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Shrimp</h4>
|
||||
<span>- $12</span>
|
||||
</div>
|
||||
<p>Grilled shrimp with rice, black beans, and sour
|
||||
cream.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>West Coast</h4>
|
||||
<span>- $11</span>
|
||||
</div>
|
||||
<p>Shredded chicken, grilled chicken or steak
|
||||
with french-fries, rice,beans, and avocado.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Barbacoa</h4>
|
||||
<span>- $10</span>
|
||||
</div>
|
||||
<p>Slow roasted beef, rice, beans, and pico de gallo.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div className="heading">
|
||||
<h2>Enchiladas</h2>
|
||||
<div className="decor" aria-hidden="true">
|
||||
<div className="left"></div>
|
||||
<img src="/gun01.svg" alt="gun icon for decor" className="" width="61" height="101" />
|
||||
<div className="right"></div>
|
||||
</div>
|
||||
</div>
|
||||
<ul className="items">
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Enchiladas Platter</h4>
|
||||
<div className="flex">
|
||||
<span>- $12</span>
|
||||
<img src="/star.svg" alt="" width="25" height="25"/>
|
||||
</div>
|
||||
</div>
|
||||
<p>4 enchiladas, 1 grilled chicken, 1 steak, 1
|
||||
carnitas, and 1 cheese. Topped with creamy
|
||||
white queso and served with a side of
|
||||
guacamole salad.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Enchiladas De Carnitas</h4>
|
||||
<span>- $10</span>
|
||||
</div>
|
||||
<p>3 deep fried pork enchiladas. Served with
|
||||
rice and beans.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Spinach Enchiladas</h4>
|
||||
<span>- $9</span>
|
||||
</div>
|
||||
<p>4 spinach and cheese enchiladas topped
|
||||
with queso, red, or green sauce. Served
|
||||
with guacamole salad.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Enchiladas Del Mar</h4>
|
||||
<span>- $12</span>
|
||||
</div>
|
||||
<p>3 crab and shrimp enchiladas. Topped with
|
||||
yourchoice of sauce, served with a side ofrice,
|
||||
and beans.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Los Enchiladas</h4>
|
||||
<span>- $12</span>
|
||||
</div>
|
||||
<p>3 cheese enchiladas topped with grilled shrimp
|
||||
and creamy white queso sauce. Served with
|
||||
rice and beans.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Enchiladas Suizas</h4>
|
||||
<span>- $9</span>
|
||||
</div>
|
||||
<p>3 chicken enchiladas with green sauce topped
|
||||
with sour cream. Served with rice and beans.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div className="heading">
|
||||
<h2>Steaks</h2>
|
||||
<div className="decor" aria-hidden="true">
|
||||
<div className="left"></div>
|
||||
<img src="/gun01.svg" alt="gun icon for decor" className="" width="61" height="101" />
|
||||
<div className="right"></div>
|
||||
</div>
|
||||
</div>
|
||||
<ul className="items">
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Carne Asada</h4>
|
||||
<span>- $15</span>
|
||||
</div>
|
||||
<p>Grilled steak served with onion, chile
|
||||
toreado, charro beans, rice and your choice
|
||||
of flour or corn tortillas.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Steak Mariposa</h4>
|
||||
<div className="flex">
|
||||
<span>- $14</span>
|
||||
<img src="red-chili-pepper.svg" width="25" height="25" alt=""/>
|
||||
</div>
|
||||
</div>
|
||||
<p>Steak mixed with jalapenos and creamy
|
||||
white queso. Served with charro beans and
|
||||
rice.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Steak Con Rajas</h4>
|
||||
<div className="flex">
|
||||
<span>- $14</span>
|
||||
<img src="red-chili-pepper.svg" width="25" height="25" alt=""/>
|
||||
</div>
|
||||
</div>
|
||||
<p>Steak mixed with poblano peppers, white
|
||||
queso sauce. Served with a side of rice and
|
||||
refried beans.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Steak Ranchero</h4>
|
||||
<span>- $15</span>
|
||||
</div>
|
||||
<p>Ribeye steak topped with grilled onions, bell
|
||||
peppers, and tomatoes. Served with
|
||||
guacamole salad, rice, and charro beans.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Milaneza Empanizada</h4>
|
||||
<span>- $13</span>
|
||||
</div>
|
||||
<p>Breaded chicken or steak, served with chile
|
||||
toreado, guacamole salad, rice and refried
|
||||
beans.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Novillo Endiablado</h4>
|
||||
<div className="flex">
|
||||
<span>- $16</span>
|
||||
<img src="red-chili-pepper.svg" width="25" height="25" alt=""/>
|
||||
</div>
|
||||
</div>
|
||||
<p>Ribeye steak and grilled spicy shrimp.
|
||||
Served with rice and black beans.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div className="heading">
|
||||
<h2 className="bev-h2">Fajitas</h2>
|
||||
<p className="kids-para">Jefe’s sizzling hot fajitas served with grilled onions, tomatoes, and bell peppers with
|
||||
a side
|
||||
of sour cream, guacamole salad, rice and refried beans. Your choice of flour or corn tortillas.</p>
|
||||
<div className="decor" aria-hidden="true">
|
||||
<div className="left"></div>
|
||||
<img src="/gun01.svg" alt="gun icon for decor" className="" width="61" height="101" />
|
||||
<div className="right"></div>
|
||||
</div>
|
||||
</div>
|
||||
<ul className="items">
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Fajitas Tipicas</h4>
|
||||
<span>one - $15 | two - $24</span>
|
||||
</div>
|
||||
<p>Grilled chicken, steak, or mix.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Fajitas Del Mar</h4>
|
||||
<span>one - $17 | two - $25</span>
|
||||
</div>
|
||||
<p>Shrimp and crab.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Fajita Azteca</h4>
|
||||
<span>one - $15 | two - $23</span>
|
||||
</div>
|
||||
<p>Grilled chicken with broccoli, cauliflower,
|
||||
carrots, onions and cheese.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Fajita Poblana</h4>
|
||||
<div className="flex">
|
||||
<span>one - $15 | two - $23</span>
|
||||
<img src="/star.svg" width="25" height="25" alt="star" />
|
||||
</div>
|
||||
</div>
|
||||
<p>Grilled chicken or steak mixed with
|
||||
poblano peppers and shredded cheese.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Fajita Norteñas</h4>
|
||||
<span>one - $13 | two - $20</span>
|
||||
</div>
|
||||
<p>Carnitas.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>KEVIN’S PAPRILLADA</h4>
|
||||
<div className="flex">
|
||||
<span>serves 2 - $25</span>
|
||||
<img src="/star.svg" width="25" height="25" alt="" />
|
||||
</div>
|
||||
</div>
|
||||
<p>This delicious platter offers grilled chicken,
|
||||
shrimp, steak, carnitas, two hotdogs, and
|
||||
chorizo.</p>
|
||||
</li>
|
||||
<li className="item">
|
||||
<div className="head">
|
||||
<h4>Jefe's Molcajete</h4>
|
||||
<span>- $24</span>
|
||||
</div>
|
||||
<p>Combination of grilled steak and chicken, 4
|
||||
shrimp, chorizo, grilled onions, and cactus
|
||||
topped with queso fresco served in a stone
|
||||
bowl with our signature sauce.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
@ -21,7 +21,7 @@ const config: Config = {
|
||||
|
||||
secondary: "#18191a",
|
||||
|
||||
accent: "#B3121E",
|
||||
accent: "#ffffffff",
|
||||
|
||||
"base-100": "#e7e5e4",
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user