2025-11-10 23:11:25 +05:30

18 lines
603 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
</>
)
}