Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 23:23:35 +00:00
2 changed files with 10 additions and 55 deletions

View File

@@ -1,64 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Al Falah Restaurant | 24-Hour Pakistani Food in Karachi", description: "Authentic Pakistani cuisine in Bin Qasim, Karachi. Fresh Nehari, Karahi, Lamb Chops & Chai. Open 24 hours. Call now or order on WhatsApp.", keywords: "Pakistani restaurant Karachi, Nehari Karachi, 24 hour restaurant, Karahi near Bin Qasim, best food Bhains Colony", metadataBase: new URL("https://alfalahrestaurant.pk"),
alternates: {
canonical: "https://alfalahrestaurant.pk"
},
openGraph: {
title: "Al Falah Restaurant | Fresh Pakistani Food 24/7", description: "Authentic Pakistani cuisine in Bin Qasim. Award-rated restaurant with delicious Nehari, Karahi & more.", url: "https://alfalahrestaurant.pk", siteName: "Al Falah Restaurant", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/side-view-traditional-azerbaijani-dish-dolma-meat-grape-leaves-clay-pot-with-yogurt_141793-5177.jpg", alt: "Al Falah Restaurant Fresh Food"
}
]
},
twitter: {
card: "summary_large_image", title: "Al Falah Restaurant | Fresh Pakistani Food 24/7", description: "Authentic Pakistani cuisine. Nehari, Karahi, Lamb Chops. Order now!", images: ["http://img.b2bpic.net/free-photo/side-view-traditional-azerbaijani-dish-dolma-meat-grape-leaves-clay-pot-with-yogurt_141793-5177.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Al Falah Restaurant", description: "Fresh Pakistani Food — Open 24 Hours in Bin Qasim"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1426,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -83,19 +83,19 @@ export default function LandingPage() {
tag="Menu Highlights"
products={[
{
id: "1", brand: "Al Falah", name: "Al Falah Special Nehari", price: "Starting $3", rating: 5,
id: "1", brand: "Al Falah", name: "Al Falah Special Nehari", price: "Starting $3 — Limited Time", rating: 5,
reviewCount: "28+ reviews", imageSrc: "http://img.b2bpic.net/free-photo/traditionla-food-kutab-with-herbs-spices_114579-2394.jpg?_wi=2", imageAlt: "Al Falah Special Nehari"
},
{
id: "2", brand: "Al Falah", name: "Chicken Karahi", price: "Starting $4", rating: 5,
id: "2", brand: "Al Falah", name: "Chicken Karahi", price: "Starting $4 — Limited Time", rating: 5,
reviewCount: "28+ reviews", imageSrc: "http://img.b2bpic.net/free-photo/indian-butter-chicken-black-bowl-wooden-table_123827-20634.jpg?_wi=2", imageAlt: "Chicken Karahi"
},
{
id: "3", brand: "Al Falah", name: "Grilled Lamb Chops", price: "Starting $5", rating: 5,
id: "3", brand: "Al Falah", name: "Grilled Lamb Chops", price: "Starting $5 — Limited Time", rating: 5,
reviewCount: "28+ reviews", imageSrc: "http://img.b2bpic.net/free-photo/top-view-lamb-ribs-kebab-with-vegetable-salad-peppercorns-wooden-table_140725-11570.jpg?_wi=2", imageAlt: "Grilled Lamb Chops"
},
{
id: "4", brand: "Al Falah", name: "Chicken Wraps", price: "Starting $2", rating: 5,
id: "4", brand: "Al Falah", name: "Chicken Wraps", price: "Starting $2 — Limited Time", rating: 5,
reviewCount: "28+ reviews", imageSrc: "http://img.b2bpic.net/free-photo/close-up-vegetarian-burrito-wrap-plate-table_23-2148165544.jpg?_wi=2", imageAlt: "Chicken Wraps"
}
]}