17 lines
553 B
TypeScript
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} />
|
|
);
|
|
}
|