Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7fdeb5d758 | |||
| c7b1c0667b | |||
| 0a41c86b56 | |||
| 905d17645b | |||
| be1aad02fa |
@@ -1,73 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Raleway } 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 raleway = Raleway({
|
||||
variable: "--font-raleway",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Al-Zhaiqa - Authentic Pakistani Restaurant in Karachi | Biryani & Karahi",
|
||||
description: "Experience authentic Pakistani cuisine at Al-Zhaiqa. Order biryani, karahi, tikka & more online or book a table. Serving Karachi with traditional Desi food since 2009.",
|
||||
keywords: "Pakistani restaurant Karachi, biryani, karahi, tikka, Pakistani food delivery, order online, desi cuisine",
|
||||
metadataBase: new URL("https://alzhaiqa.com"),
|
||||
alternates: {
|
||||
canonical: "https://alzhaiqa.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Al-Zhaiqa - Authentic Pakistani Taste",
|
||||
description: "Traditional Pakistani cuisine prepared with authentic recipes and spices",
|
||||
siteName: "Al-Zhaiqa",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/pilaf-bowl-board-spices-yellow-green-background-top-view_185193-162334.jpg",
|
||||
alt: "Al-Zhaiqa Authentic Pakistani Biryani",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Al-Zhaiqa - Authentic Pakistani Restaurant",
|
||||
description: "Best biryani & karahi in Karachi. Order online or book your table now!",
|
||||
images: ["http://img.b2bpic.net/free-photo/pilaf-bowl-board-spices-yellow-green-background-top-view_185193-162334.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Al-Zhaiqa - Authentic Pakistani Cuisine", description: "Experience the finest flavors of traditional Pakistani cuisine at Al-Zhaiqa. Authentic recipes, authentic taste."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1435,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -119,6 +119,10 @@ export default function HomePage() {
|
||||
id: "2", name: "Chicken Karahi", price: "PKR 1,200", variant: "Spiced Wok Curry", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chicken-kebab-with-greens-red-onion-grilled-corn-dried-barberry-table_141793-4835.jpg", imageAlt: "Chicken Karahi"},
|
||||
{
|
||||
id: "3", name: "Seekh Kebab", price: "PKR 600", variant: "Grilled Minced Meat", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-qutabs-cooked-dough-slices-with-greens-inside-grey-space_140725-75796.jpg", imageAlt: "Seekh Kebab"},
|
||||
{
|
||||
id: "4", name: "Nihari", price: "PKR 750", variant: "Slow-Cooked Meat Stew", imageSrc: "http://img.b2bpic.net/free-photo/delicious-meat-stew-with-vegetables_141793-4805.jpg", imageAlt: "Nihari"},
|
||||
{
|
||||
id: "5", name: "Haleem", price: "PKR 650", variant: "Meat and Lentil Blend", imageSrc: "http://img.b2bpic.net/free-photo/traditional-middle-eastern-haleem-dish_141793-4850.jpg", imageAlt: "Haleem"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -207,4 +211,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user