60 lines
3.4 KiB
JavaScript
60 lines
3.4 KiB
JavaScript
'use client'
|
|
import Link from "next/link"
|
|
export default function Menu2() {
|
|
return (
|
|
<>
|
|
|
|
{/* Menu Page Section */}
|
|
<section className="menu-page-section">
|
|
<div className="auto-container">
|
|
<div className="row clearfix">
|
|
|
|
{/* Menu Block Two */}
|
|
<div className="menu-block-two col-lg-4 col-md-6 col-sm-12">
|
|
<div className="inner-box">
|
|
<div className="side-icon">
|
|
<img src="/assets/images/home/3-cards/icon-1.webp" alt="Freshly made street food served at Sixty5 Street Brampton" loading="lazy"/>
|
|
</div>
|
|
<div className="icon">
|
|
<img src="/assets/images/home/3-cards/icon-small-1.webp" alt="Quality street food symbol from Sixty5 Street Brampton" loading="lazy"/>
|
|
</div>
|
|
<h3>Street Flavor</h3>
|
|
<div className="text">Spicy shawarmas, crispy dosas, saucy wings burst with bold, unforgettable street flavor.</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Menu Block Two */}
|
|
<div className="menu-block-two col-lg-4 col-md-6 col-sm-12">
|
|
<div className="inner-box">
|
|
<div className="side-icon">
|
|
<img src="/assets/images/home/3-cards/icon-2.webp" alt="Authentic street eats icon from Sixty5 Street Brampton" loading="lazy"/>
|
|
</div>
|
|
<div className="icon">
|
|
<img src="/assets/images/home/3-cards/icon-small-2 .webp" alt="Delicious food experience icon at Sixty5 Street Brampton" loading="lazy"/>
|
|
</div>
|
|
<h3>Fresh Ingredients</h3>
|
|
<div className="text">Handpicked vegetables, premium proteins, and authentic masalas elevate each dish.</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Menu Block Two */}
|
|
<div className="menu-block-two col-lg-4 col-md-6 col-sm-12">
|
|
<div className="inner-box">
|
|
<div className="side-icon">
|
|
<img src="/assets/images/home/3-cards/icon-3.webp" alt="Fast and flavorful service icon from Sixty5 Street Brampton" loading="lazy"/>
|
|
</div>
|
|
<div className="icon">
|
|
<img src="/assets/images/home/3-cards/icon-small-3.webp" alt="Tasty bites icon for Sixty5 Street Brampton ON" loading="lazy" />
|
|
</div>
|
|
<h3>Quick Service</h3>
|
|
<div className="text">Freshly prepared, expertly crafted meals delivered fast without compromising quality.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{/* End Restaurant Section */}
|
|
</>
|
|
)
|
|
}
|