Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 80bdc9a2cd | |||
| 95f84022f2 | |||
| 22d9a57831 |
@@ -1,57 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Nunito_Sans } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const nunitoSans = Nunito_Sans({
|
const geist = Geist({
|
||||||
variable: "--font-nunito-sans", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const halant = Halant({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Damak Tadı | Authentic Turkish Grill in Antwerp", description: "Authentic Turkish comfort dining in Antwerp. Homemade dishes, warm hospitality, and genuine flavors. Reserve your table or order pickup today.", keywords: "Turkish restaurant Antwerp, grill restaurant, authentic Turkish cuisine, kebab, kofte, comfort dining", metadataBase: new URL("https://damaktadi.be"),
|
title: "Damak Tadı - Authentic Turkish Grill in Antwerp", description: "Experience authentic Turkish flavors at Damak Tadı. Homemade dishes, warm hospitality, and refined comfort dining in Antwerp."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://damaktadi.be"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Damak Tadı | Authentic Turkish Grill", description: "Authentic Turkish comfort dining where every guest feels like family. Homemade flavors, warm hospitality.", url: "https://damaktadi.be", siteName: "Damak Tadı", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/different-varieties-kebab-with-grilled-vegetables_140725-8135.jpg", alt: "Damak Tadı Turkish grill restaurant"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Damak Tadı | Authentic Turkish Grill", description: "Experience authentic Turkish comfort dining in Antwerp", images: ["http://img.b2bpic.net/free-photo/different-varieties-kebab-with-grilled-vegetables_140725-8135.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${nunitoSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ export default function LandingPage() {
|
|||||||
description="Authentic Turkish flavors made with heart. A warm kitchen where every dish is homemade with passion, and every guest feels like family. Experience refined Turkish comfort dining in Antwerp."
|
description="Authentic Turkish flavors made with heart. A warm kitchen where every dish is homemade with passion, and every guest feels like family. Experience refined Turkish comfort dining in Antwerp."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Reserve Your Table", href: "#contact" },
|
{ text: "Reserve Now", href: "#contact" },
|
||||||
{ text: "Order for Pickup", href: "#contact" },
|
{ text: "Order for Pickup", href: "#contact" },
|
||||||
]}
|
]}
|
||||||
layoutOrder="default"
|
layoutOrder="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user