12 lines
398 B
TypeScript
12 lines
398 B
TypeScript
import { Metadata } from "next";
|
|
import GalleryContent from "./GalleryContent";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Gallery | Antalya Restaurant",
|
|
description: "Explore our gallery to see our delicious dishes, elegant interior, and happy customers. Experience the visual delight of Antalya Restaurant.",
|
|
};
|
|
|
|
export default function GalleryPage() {
|
|
return <GalleryContent />;
|
|
}
|