Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f0396e668 | |||
| 203f156810 | |||
| 1e75960ed7 | |||
| f67fd6a2d5 | |||
| f652a00354 |
@@ -1,67 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import { Inter } 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 dmSans = DM_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-dm-sans",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Yerevan Garden - Premium Garden-to-Table Restaurant",
|
title: "Yerevan Garden - Premium Dining", description: "Experience exquisite garden-to-table cuisine in Yerevan"};
|
||||||
description: "Experience exquisite garden-to-table cuisine at Yerevan Garden on Leningradyan Street. Sophisticated dining in a lush, enchanting atmosphere. Book your reservation today.",
|
|
||||||
keywords: "restaurant Yerevan, fine dining, garden-to-table, Armenian cuisine, Leningradyan Street, gourmet, upscale dining",
|
|
||||||
metadataBase: new URL("https://yerevangarden.am"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://yerevangarden.am",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Yerevan Garden - Premium Dining Experience",
|
|
||||||
description: "Discover exquisite garden-to-table cuisine in a sophisticated, enchanting setting. Reserve your table at Yerevan Garden.",
|
|
||||||
url: "https://yerevangarden.am",
|
|
||||||
siteName: "Yerevan Garden",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/wonderful-wedding-table-amazing-restaurant_8353-9875.jpg",
|
|
||||||
alt: "Yerevan Garden fine dining restaurant",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Yerevan Garden - Premium Restaurant",
|
|
||||||
description: "Experience exceptional garden-to-table dining. Call 077 800 989 to reserve.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/front-view-cooked-squashes-designed-meal-inside-plate-grey-space_140725-83766.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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1429,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ export default function HomePage() {
|
|||||||
mediaAnimation="none"
|
mediaAnimation="none"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Now", href: "/contact" },
|
{ text: "Book Now", href: "/contact" },
|
||||||
{ text: "View Menu", href: "/menu" },
|
{ text: "Explore Our Cuisine", href: "/menu" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -236,4 +236,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user