50 lines
2.7 KiB
JavaScript
50 lines
2.7 KiB
JavaScript
'use client'
|
|
import Link from "next/link"
|
|
export default function Juice() {
|
|
|
|
return (
|
|
<>
|
|
|
|
|
|
{/* Juice Section */}
|
|
<section className="juice-section" id="about">
|
|
{/* <div className="section-text">Sixty5Street</div> */}
|
|
{/* <div className="pattern-layer" style={{ backgroundImage: 'url(assets/images/background/1.png)' }} ></div> */}
|
|
<div className="pattern-layer-two" style={{ backgroundImage: 'url(/assets/images/home/about/crave-worthy-right.webp)' }} ></div>
|
|
<div className="auto-container">
|
|
<div className="row clearfix">
|
|
|
|
{/* Image Column */}
|
|
<div className="image-column col-lg-7 col-md-12 col-sm-12">
|
|
<div className="inner-column">
|
|
<div className="image">
|
|
<img src="/assets/images/home/about/crave-worthy-left.webp" alt="Crave-worthy dishes at Sixty5 Street, Brampton ON" loading="lazy"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Content Column */}
|
|
<div className="content-column col-lg-5 col-md-12 col-sm-12">
|
|
<div className="inner-column">
|
|
{/* Sec Title */}
|
|
<div className="sec-title">
|
|
<div className="title">Discover the Flavor</div>
|
|
<h2>Crave-Worthy <span className="theme_color">Street Food.</span></h2>
|
|
<div className="separate"></div>
|
|
<div className="text"> At Sixty5Street, we bring the hustle and flavor of real street food to your plate - no shortcuts, just seriously satisfying eats. Our menu is stacked with bold bites like Chicken 65, saucy wings, sizzling shawarmas, and crispy dosas - all made fresh and bursting with flavor.</div>
|
|
<div className="text">
|
|
Whether you're grabbing lunch, chilling with friends, or fueling a late-night craving, we've got something hot, hearty, and delicious waiting for you.
|
|
</div>
|
|
</div>
|
|
<Link href="/about" className="theme-btn btn-style-two clearfix"><span className="icon"></span>Know About us</Link>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{/* End Juice Section */}
|
|
</>
|
|
)
|
|
}
|