|
|
|
|
@@ -1,6 +1,6 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import "@/lib/gsap-setup";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
@@ -8,19 +8,34 @@ import Tag from "@/tag/Tag";
|
|
|
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const interFont = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Webild components 2",
|
|
|
|
|
description: "Generated by create next app",
|
|
|
|
|
title: "Mian Coffee House | Exceptional Coffee Moments", description: "Experience premium coffee, delicious desserts, and a luxurious atmosphere at Mian Coffee House. Visit us for an unforgettable café experience. Optimized for local coffee shop searches in Amman, Jordan.", keywords: "Mian Coffee House, coffee shop, café, specialty coffee, desserts, Amman, Jordan, premium coffee, luxury coffee, shisha, best coffee Amman, local coffee shop, cafe Amman", metadataBase: new URL("https://www.miancoffee.com"),
|
|
|
|
|
alternates: { canonical: "https://www.miancoffee.com" },
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Mian Coffee House | Exceptional Coffee Moments", description: "Experience premium coffee, delicious desserts, and a luxurious atmosphere at Mian Coffee House. Visit us for an unforgettable café experience.", url: "https://www.miancoffee.com", siteName: "Mian Coffee House", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/male-barista-preparing-coffee_23-2148824432.jpg", alt: "Mian Coffee House Exterior"},
|
|
|
|
|
],
|
|
|
|
|
type: "website"},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Mian Coffee House | Exceptional Coffee Moments", description: "Experience premium coffee, delicious desserts, and a luxurious atmosphere at Mian Coffee House. Visit us for an unforgettable café experience.", images: ["http://img.b2bpic.net/free-photo/male-barista-preparing-coffee_23-2148824432.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
@@ -32,7 +47,7 @@ export default function RootLayout({
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${interFont.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|