18 lines
603 B
JavaScript
18 lines
603 B
JavaScript
import Layout from "@/components/layout/Layout"
|
||
import AboutContent from "./AboutContent"
|
||
|
||
export const metadata = {
|
||
title: "About Sixty5 Street – Our Story of Street-Food Flavor",
|
||
description: "At Sixty5 Street we bring the hustle and flavor of real street food – bold bites like Chicken 65, wings, shawarmas & dosas, crafted fresh for fast satisfaction.",
|
||
}
|
||
|
||
export default function About() {
|
||
return (
|
||
<>
|
||
<Layout headerStyle={2} footerStyle={2} breadcrumbTitle="About Us" bgImage="/assets/images/about/about-banner.webp">
|
||
<AboutContent />
|
||
</Layout>
|
||
</>
|
||
)
|
||
}
|