import type { Metadata } from "next";
import { galleryImages } from "@/lib/data";
import { GalleryLightbox } from "@/components/gallery-lightbox";

export const metadata: Metadata = {
  title: "Галерея",
  description: "Фотографии еды, интерьера, бара, команды и печи КИЛН."
};

export default function GalleryPage() {
  return (
    <section className="section">
      <div className="site-container">
        <h1 className="display-title text-center text-6xl text-kiln-flame md:text-8xl">Галерея</h1>
        <div className="mt-8"><GalleryLightbox images={galleryImages} /></div>
      </div>
    </section>
  );
}
