Images updated
BIN
app/favicon.ico
|
Before Width: | Height: | Size: 335 B After Width: | Height: | Size: 2.4 KiB |
BIN
app/favicons.ico
Normal file
|
After Width: | Height: | Size: 335 B |
@ -24,72 +24,85 @@ const MobileMenu = ({ isSidebar, handleMobileMenu, handleSidebar }) => {
|
||||
});
|
||||
}
|
||||
};
|
||||
return (
|
||||
<>
|
||||
<div className="mobile-menu">
|
||||
<div className="menu-backdrop" onClick={handleMobileMenu}></div>
|
||||
<div className="close-btn" onClick={handleMobileMenu}><span className="icon flaticon-multiply"></span></div>
|
||||
|
||||
<nav className="menu-box">
|
||||
<div className="nav-logo"><Link href="/"><img src="/assets/images/logo.png" alt="" title="" /></Link></div>
|
||||
<div className="menu-outer">
|
||||
<div className="collapse navbar-collapse show clearfix" id="navbarSupportedContent">
|
||||
<ul className="navigation">
|
||||
{/* <li className={isActive.key == 1 ? "dropdown current" : "dropdown"}><Link href="/">Home</Link>
|
||||
<ul style={{ display: `${isActive.key == 1 ? "block" : "none"}` }}>
|
||||
<li><Link href="/">Home One</Link></li>
|
||||
<li><Link href="index-2">Home Two</Link></li>
|
||||
<li><Link href="index-3">Home Three</Link></li>
|
||||
<li><Link href="index-4">Home Four</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 1 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(1)}><span className="fa fa-angle-right" /></div>
|
||||
</li> */}
|
||||
<li className={isActive.key == 2 ? "dropdown current" : "dropdown"}><Link href="/#about">About</Link>
|
||||
{/* <ul style={{ display: `${isActive.key == 2 ? "block" : "none"}` }}>
|
||||
<li><Link href="about">About</Link></li>
|
||||
<li><Link href="team">Team</Link></li>
|
||||
<li><Link href="restaurant">Restaurant</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 2 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(2)}><span className="fa fa-angle-right" /></div> */}
|
||||
</li>
|
||||
<li><Link href="/#popular-dishes">Popular Dishes</Link></li>
|
||||
<li><Link href="/#sixty5-street-specials">Sixty5 Street Specials</Link></li>
|
||||
<li className={isActive.key == 3 ? "dropdown current" : "dropdown"}><Link href="/#menu">Menu</Link>
|
||||
{/* <ul style={{ display: `${isActive.key == 3 ? "block" : "none"}` }}>
|
||||
<li><Link href="menu">Menu</Link></li>
|
||||
<li><Link href="milkshake">Milk Shake</Link></li>
|
||||
<li><Link href="frappe">Frappe</Link></li>
|
||||
<li><Link href="boba-tea">Boba Tea</Link></li>
|
||||
<li><Link href="slushy">Slushy</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 3 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(3)}><span className="fa fa-angle-right" /></div> */}
|
||||
</li>
|
||||
{/* <li className={isActive.key == 4 ? "dropdown current" : "dropdown"}><Link href="/#">Gallery</Link>
|
||||
<ul style={{ display: `${isActive.key == 4 ? "block" : "none"}` }}>
|
||||
<li><Link href="gallery">Gallery</Link></li>
|
||||
<li><Link href="gallery-2">Gallery 02</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 4 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(4)}><span className="fa fa-angle-right" /></div>
|
||||
</li>
|
||||
<li className={isActive.key == 5 ? "dropdown current" : "dropdown"}><Link href="/#">Blog</Link>
|
||||
<ul style={{ display: `${isActive.key == 5 ? "block" : "none"}` }}>
|
||||
<li><Link href="blog-classic">Blog Classic</Link></li>
|
||||
<li><Link href="blog-details2">Blog Single 02</Link></li>
|
||||
<li><Link href="blog-details">Blog Details</Link></li>
|
||||
<li><Link href="/error">Not Found</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 5 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(5)}><span className="fa fa-angle-right" /></div>
|
||||
</li>
|
||||
<li><Link href="/contact">Contact</Link></li> */}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
return (
|
||||
<>
|
||||
<div className="mobile-menu">
|
||||
<div className="menu-backdrop" onClick={handleMobileMenu}></div>
|
||||
<div className="close-btn" onClick={handleMobileMenu}>
|
||||
<span className="icon flaticon-multiply"></span>
|
||||
</div>
|
||||
|
||||
<nav className="menu-box">
|
||||
<div className="nav-logo">
|
||||
<Link href="/" onClick={handleMobileMenu}>
|
||||
<img src="assets/images/logo/logo-black.png" alt="" title="" />
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
<div className="menu-outer">
|
||||
<div className="collapse navbar-collapse show clearfix" id="navbarSupportedContent">
|
||||
<ul className="navigation">
|
||||
{/* <li className={isActive.key == 1 ? "dropdown current" : "dropdown"}><Link href="/" onClick={handleMobileMenu}>Home</Link>
|
||||
<ul style={{ display: `${isActive.key == 1 ? "block" : "none"}` }}>
|
||||
<li><Link href="/" onClick={handleMobileMenu}>Home One</Link></li>
|
||||
<li><Link href="index-2" onClick={handleMobileMenu}>Home Two</Link></li>
|
||||
<li><Link href="index-3" onClick={handleMobileMenu}>Home Three</Link></li>
|
||||
<li><Link href="index-4" onClick={handleMobileMenu}>Home Four</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 1 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(1)}><span className="fa fa-angle-right" /></div>
|
||||
</li> */}
|
||||
|
||||
<li className={isActive.key == 2 ? "dropdown current" : "dropdown"}>
|
||||
<Link href="/#about" onClick={handleMobileMenu}>About</Link>
|
||||
{/* <ul style={{ display: `${isActive.key == 2 ? "block" : "none"}` }}>
|
||||
<li><Link href="about" onClick={handleMobileMenu}>About</Link></li>
|
||||
<li><Link href="team" onClick={handleMobileMenu}>Team</Link></li>
|
||||
<li><Link href="restaurant" onClick={handleMobileMenu}>Restaurant</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 2 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(2)}><span className="fa fa-angle-right" /></div> */}
|
||||
</li>
|
||||
|
||||
<li><Link href="/#popular-dishes" onClick={handleMobileMenu}>Popular Dishes</Link></li>
|
||||
<li><Link href="/#sixty5-street-specials" onClick={handleMobileMenu}>Sixty5 Street Specials</Link></li>
|
||||
|
||||
<li className={isActive.key == 3 ? "dropdown current" : "dropdown"}>
|
||||
<Link href="/#menu" onClick={handleMobileMenu}>Menu</Link>
|
||||
{/* <ul style={{ display: `${isActive.key == 3 ? "block" : "none"}` }}>
|
||||
<li><Link href="menu" onClick={handleMobileMenu}>Menu</Link></li>
|
||||
<li><Link href="milkshake" onClick={handleMobileMenu}>Milk Shake</Link></li>
|
||||
<li><Link href="frappe" onClick={handleMobileMenu}>Frappe</Link></li>
|
||||
<li><Link href="boba-tea" onClick={handleMobileMenu}>Boba Tea</Link></li>
|
||||
<li><Link href="slushy" onClick={handleMobileMenu}>Slushy</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 3 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(3)}><span className="fa fa-angle-right" /></div> */}
|
||||
</li>
|
||||
|
||||
{/* <li className={isActive.key == 4 ? "dropdown current" : "dropdown"}><Link href="/#" onClick={handleMobileMenu}>Gallery</Link>
|
||||
<ul style={{ display: `${isActive.key == 4 ? "block" : "none"}` }}>
|
||||
<li><Link href="gallery" onClick={handleMobileMenu}>Gallery</Link></li>
|
||||
<li><Link href="gallery-2" onClick={handleMobileMenu}>Gallery 02</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 4 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(4)}><span className="fa fa-angle-right" /></div>
|
||||
</li>
|
||||
|
||||
<li className={isActive.key == 5 ? "dropdown current" : "dropdown"}><Link href="/#" onClick={handleMobileMenu}>Blog</Link>
|
||||
<ul style={{ display: `${isActive.key == 5 ? "block" : "none"}` }}>
|
||||
<li><Link href="blog-classic" onClick={handleMobileMenu}>Blog Classic</Link></li>
|
||||
<li><Link href="blog-details2" onClick={handleMobileMenu}>Blog Single 02</Link></li>
|
||||
<li><Link href="blog-details" onClick={handleMobileMenu}>Blog Details</Link></li>
|
||||
<li><Link href="/error" onClick={handleMobileMenu}>Not Found</Link></li>
|
||||
</ul>
|
||||
<div className={isActive.key == 5 ? "dropdown-btn open" : "dropdown-btn"} onClick={() => handleToggle(5)}><span className="fa fa-angle-right" /></div>
|
||||
</li>
|
||||
<li><Link href="/contact" onClick={handleMobileMenu}>Contact</Link></li> */}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
|
||||
</>
|
||||
)
|
||||
}
|
||||
export default MobileMenu;
|
||||
|
||||
@ -19,7 +19,7 @@ export default function Footer2() {
|
||||
<div className="footer-column col-lg-6 col-md-6 col-sm-12">
|
||||
<div className="footer-widget logo-widget">
|
||||
<div className="logo">
|
||||
<Link href="/"><img src="/assets/images/logo.png" alt="" /></Link>
|
||||
<Link href="/"><img src="/assets/images/logo/logo-white.png" alt="" /></Link>
|
||||
</div>
|
||||
<div className="text">Bold street food made fresh.<br /> Wings, wraps, dosas & more - all packed with flavor and attitude.</div>
|
||||
</div>
|
||||
|
||||
@ -22,7 +22,7 @@ export default function Header2({ scroll, isMobileMenu, handleMobileMenu }) {
|
||||
<div className="clearfix">
|
||||
|
||||
<div className="pull-left logo-box">
|
||||
<div className="logo"><Link href="/"><img src="assets/images/logo.png" alt="" title=""/></Link></div>
|
||||
<div className="logo"><Link href="/"><img src="assets/images/logo/logo-white.png" alt="" title=""/></Link></div>
|
||||
</div>
|
||||
|
||||
<div className="nav-outer clearfix">
|
||||
|
||||
@ -14,7 +14,7 @@ export default function Gallery() {
|
||||
<div className="gallery-block-two masonry-item">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<img src="assets/images/gallery/7.jpg" alt="" />
|
||||
<img src="/assets/images/home/categories/combos.webp" alt="" />
|
||||
<div className="overlay-box">
|
||||
<h6><Link href="gallery">Combos</Link></h6>
|
||||
{/* <div className="title">Us percipit urbanitas referrentur ea.</div> */}
|
||||
@ -30,7 +30,7 @@ export default function Gallery() {
|
||||
<div className="gallery-block-two masonry-item">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<img src="assets/images/gallery/8.jpg" alt="" />
|
||||
<img src="/assets/images/home/categories/milkshakes.webp" alt="" />
|
||||
<div className="overlay-box">
|
||||
<h6><Link href="gallery">Milk Shakes</Link></h6>
|
||||
{/* <div className="title">Us percipit urbanitas referrentur ea.</div> */}
|
||||
@ -42,7 +42,7 @@ export default function Gallery() {
|
||||
<div className="gallery-block-two masonry-item">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<img src="assets/images/gallery/11.jpg" alt="" />
|
||||
<img src="/assets/images/home/categories/poutine.webp" alt="" />
|
||||
<div className="overlay-box">
|
||||
<h6><Link href="gallery">Poutine</Link></h6>
|
||||
{/* <div className="title">Us percipit urbanitas referrentur ea.</div> */}
|
||||
@ -61,7 +61,7 @@ export default function Gallery() {
|
||||
<div className="gallery-block-two masonry-item">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<img src="assets/images/gallery/9.jpg" alt="" />
|
||||
<img src="/assets/images/home/categories/salads.webp" alt="" />
|
||||
<div className="overlay-box">
|
||||
<h6><Link href="gallery">Salads</Link></h6>
|
||||
{/* <div className="title">Us percipit urbanitas referrentur ea.</div> */}
|
||||
@ -77,7 +77,7 @@ export default function Gallery() {
|
||||
<div className="gallery-block-two masonry-item ">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<img src="assets/images/gallery/10.jpg" alt="" />
|
||||
<img src="/assets/images/home/categories/shawarma.webp" alt="" />
|
||||
<div className="overlay-box">
|
||||
<h6><Link href="gallery">Shawarma Wraps</Link></h6>
|
||||
{/* <div className="title">Us percipit urbanitas referrentur ea.</div> */}
|
||||
@ -92,7 +92,7 @@ export default function Gallery() {
|
||||
<div className="gallery-block-two masonry-item">
|
||||
<div className="inner-box">
|
||||
<div className="image-box">
|
||||
<img src="assets/images/gallery/12.jpg" alt="" />
|
||||
<img src="/assets/images/home/categories/dosa.webp" alt="" />
|
||||
<div className="overlay-box">
|
||||
<h6><Link href="gallery">Dosa</Link></h6>
|
||||
{/* <div className="title">Us percipit urbanitas referrentur ea.</div> */}
|
||||
|
||||
@ -560,7 +560,8 @@ img{
|
||||
|
||||
.sec-title .title{
|
||||
position:relative;
|
||||
color:#beb996;
|
||||
/* color:#beb996; */
|
||||
color: #ed7129;
|
||||
font-size:24px;
|
||||
font-weight:400;
|
||||
letter-spacing:2px;
|
||||
|
||||
BIN
public/assets/images/home/categories/combos.webp
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
public/assets/images/home/categories/dosa.webp
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
public/assets/images/home/categories/milkshakes.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/images/home/categories/poutine.webp
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
public/assets/images/home/categories/salads.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/assets/images/home/categories/shawarma.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/assets/images/logo/logo-black.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
public/assets/images/logo/logo-white.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |