33 lines
1006 B
TypeScript
33 lines
1006 B
TypeScript
import Hero from "@/components/Hero/Hero";
|
|
import PopularDishes from "@/components/PopularDishes/PopularDishes";
|
|
import About from "@/components/About/About";
|
|
import Menu from "@/components/Menu/Menu";
|
|
import Gallery from "@/components/Gallery/Gallery";
|
|
import Testimonials from "@/components/Testimonials/Testimonials";
|
|
import Blogs from "@/components/Blogs/Blogs";
|
|
import BookTable from "@/components/BookTable/BookTable";
|
|
import Footer from "@/components/Footer/Footer";
|
|
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Best Turkish Restaurant in Ontario | Antalya",
|
|
description: "Enjoy authentic Turkish dining at Antalya with charcoal-grilled kebabs, handcrafted dishes, & warm hospitality for a memorable taste of Turkey.",
|
|
};
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<Hero />
|
|
<PopularDishes />
|
|
<About />
|
|
<Menu />
|
|
<Gallery />
|
|
<Testimonials />
|
|
<Blogs />
|
|
<BookTable />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|