Merge version_2 into main #4
@@ -1,59 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
import type { Metadata } from 'next';
|
||||
import './globals.css';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Al Madeena Kaka Hotel | Authentic Restaurant & Hospitality", description: "Authentic restaurant and hotel serving fresh, hygienic meals daily. Family-friendly dining with 4.8★ rating. Call now to reserve your table or order online.", keywords: "restaurant, hotel, authentic food, family dining, catering, reservation, halal, local business", metadataBase: new URL("https://almadeena.com"),
|
||||
alternates: {
|
||||
canonical: "https://almadeena.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Al Madeena Kaka Hotel - Authentic Taste. Trusted by Families.", description: "Experience genuine flavors at Al Madeena Kaka. Fresh ingredients, hygienic kitchen, premium service.", url: "https://almadeena.com", siteName: "Al Madeena Kaka", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/lunch-main-dishes-potato-chicken-dolma-cocktails-buns-side-view_141793-12270.jpg", alt: "Al Madeena Kaka Hotel - Premium Restaurant"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Al Madeena Kaka Hotel | Authentic Restaurant", description: "Serving fresh & hygienic meals daily. Trusted by 1000+ happy customers.", images: ["http://img.b2bpic.net/free-photo/lunch-main-dishes-potato-chicken-dolma-cocktails-buns-side-view_141793-12270.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
title: 'Al Madeena Kaka - Hotel & Restaurant',
|
||||
description: 'Authentic taste, trusted by families. Fresh & hygienic meals daily.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -96,6 +96,9 @@ export default function AlMadeenaKakaPage() {
|
||||
description="Our most loved and bestselling culinary creations. Fresh ingredients, authentic recipes, exceptional taste."
|
||||
tag="Most Popular"
|
||||
tagIcon={Sparkles}
|
||||
buttons={[
|
||||
{ text: "View Full Menu", href: "#contact" }
|
||||
]}
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Al Madeena Kaka", name: "Butter Chicken Biryani", price: "From $12.99", rating: 5,
|
||||
@@ -274,4 +277,4 @@ export default function AlMadeenaKakaPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user