9 Commits

Author SHA1 Message Date
3ba78f9771 Merge version_3 into main
Merge version_3 into main
2026-03-04 21:07:56 +00:00
165cdf6bab Update src/app/page.tsx 2026-03-04 21:07:52 +00:00
61101d4227 Update src/app/layout.tsx 2026-03-04 21:07:52 +00:00
5ff7311174 Merge version_2 into main
Merge version_2 into main
2026-03-04 21:03:08 +00:00
c51cda34da Update src/app/page.tsx 2026-03-04 21:03:01 +00:00
407197827d Update src/app/layout.tsx 2026-03-04 21:03:00 +00:00
34183e3cb6 Merge version_1 into main
Merge version_1 into main
2026-03-04 21:01:19 +00:00
11198b9ad3 Merge version_1 into main
Merge version_1 into main
2026-03-04 21:00:09 +00:00
ad35683fca Merge version_1 into main
Merge version_1 into main
2026-03-04 20:58:46 +00:00
2 changed files with 19 additions and 50 deletions

View File

@@ -1,59 +1,22 @@
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";
import { DM_Sans } from "next/font/google";
import "@/styles/globals.css";
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"],
});
const dm_sans = DM_Sans({
subsets: ["latin"],
display: "swap"});
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 - Premium Hotel & Restaurant", description: "Experience authentic taste at Al Madeena Kaka. Trusted by 1,000+ families for fresh, hygienic meals. Reserve your table today."};
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 className={dm_sans.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -50,6 +50,13 @@ export default function AlMadeenaKakaPage() {
background={{ variant: "sparkles-gradient" }}
tag="Established Local Brand"
tagIcon={Award}
avatars={[
{ src: "http://img.b2bpic.net/free-photo/closeup-young-female-professional-making-eye-contact-against-colored-background_662251-651.jpg", alt: "Customer 1" },
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Customer 2" },
{ src: "http://img.b2bpic.net/free-vector/women-avatar-collection_24908-60284.jpg", alt: "Customer 3" },
{ src: "http://img.b2bpic.net/free-photo/closeup-portrait-cheerful-young-woman-outdoors_1163-4733.jpg", alt: "Customer 4" }
]}
avatarText="Trusted by 1,000+ families"
imageSrc="http://img.b2bpic.net/free-photo/lunch-main-dishes-potato-chicken-dolma-cocktails-buns-side-view_141793-12270.jpg?_wi=1"
imageAlt="Al Madeena Kaka Hotel - Premium Restaurant & Hospitality"
buttons={[
@@ -274,4 +281,4 @@ export default function AlMadeenaKakaPage() {
</div>
</ThemeProvider>
);
}
}