2026-04-10 16:33:00 +05:30

17 lines
553 B
TypeScript

import { Metadata } from "next";
import AboutContent from "./AboutContent";
import { getReviews } from "@/utils/getReviews";
export const metadata: Metadata = {
title: "About Antalya Restaurant | Authentic Turkish Dining",
description: "Learn about Antalya Restaurant in Ontario - where authentic Turkish flavours, warm hospitality come together for a memorable dining experience.",
};
export default async function AboutPage() {
const reviews = await getReviews();
return (
<AboutContent initialReviews={reviews} />
);
}