5 Commits

Author SHA1 Message Date
7fdeb5d758 Update src/app/page.tsx 2026-03-07 06:39:26 +00:00
c7b1c0667b Update src/app/layout.tsx 2026-03-07 06:39:26 +00:00
0a41c86b56 Merge version_1 into main
Merge version_1 into main
2026-03-07 06:29:39 +00:00
905d17645b Merge version_1 into main
Merge version_1 into main
2026-03-07 06:28:59 +00:00
be1aad02fa Merge version_1 into main
Merge version_1 into main
2026-03-07 06:28:03 +00:00
2 changed files with 12 additions and 62 deletions

View File

@@ -1,73 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Raleway } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Al-Zhaiqa - Authentic Pakistani Restaurant in Karachi | Biryani & Karahi", title: "Al-Zhaiqa - Authentic Pakistani Cuisine", description: "Experience the finest flavors of traditional Pakistani cuisine at Al-Zhaiqa. Authentic recipes, authentic taste."};
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,
},
};
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={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1435,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -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: "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: "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> </div>
@@ -207,4 +211,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }