8 Commits

Author SHA1 Message Date
f97bb32d40 Update src/app/page.tsx 2026-03-07 06:41:40 +00:00
da27f2dff0 Update src/app/layout.tsx 2026-03-07 06:41:39 +00:00
0283b0702c Merge version_2 into main
Merge version_2 into main
2026-03-07 06:39:31 +00:00
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 11 additions and 60 deletions

View File

@@ -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>
);
}

View File

@@ -88,6 +88,7 @@ export default function HomePage() {
{ text: "Order Now", href: "/order" },
{ text: "Book Table", href: "/booking" },
]}
buttonClassName="[&>button:first-child]:bg-gradient-to-r [&>button:first-child]:from-amber-500 [&>button:first-child]:to-orange-600 [&>button:first-child]:text-white [&>button:first-child]:font-bold [&>button:first-child]:scale-110 [&>button:first-child]:hover:scale-125 [&>button:first-child]:transition-transform"
testimonials={[
{
name: "Ahmed Hassan", handle: "Customer since 2022", testimonial: "Best biryani in Karachi! The flavors are authentic and the service is exceptional.", rating: 5,
@@ -119,6 +120,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>