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

36 lines
1.2 KiB
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 GalleryLightbox from "./GalleryLightbox";
export const metadata = {
title: "Gallery Sixty5 Street Eats & Vibes",
description: "Browse the Sixty5 Street gallery to see our bold bites, sizzling dishes and vibrant atmosphere. Get inspired by the food, flavor and fun.",
}
export default function GalleryPage() {
const images = [
"/assets/images/home/categories/combos.webp",
"/assets/images/home/categories/milkshakes.webp",
"/assets/images/home/categories/poutine.webp",
"/assets/images/home/categories/salads.webp",
"/assets/images/home/categories/shawarma.webp",
"/assets/images/home/categories/dosa.webp"
];
return (
<Layout
headerStyle={2}
footerStyle={2}
breadcrumbTitle="Gallery"
bgImage="/assets/images/about/about-banner.webp"
>
{/* Gallery Section Two */}
<section className="gallery-section-two sec-pad" id="gallery">
<div className="outer-container">
<GalleryLightbox images={images} />
</div>
</section>
{/* End Gallery Section Two */}
</Layout>
);
}