Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 09:04:17 +00:00
2 changed files with 10 additions and 45 deletions

View File

@@ -1,57 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Poppins } 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 dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const poppins = Poppins({
subsets: ["latin"],
weight: ["400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Al Nemat BBQ & Restaurant | Best Grilled Meat in Multan", description: "Al Nemat serves authentic BBQ, grilled fish, mutton kadai & paratha rolls in Multan. Order online for delivery or dine-in. Call +92 300 2349363. Trusted by 1,277+ customers.", keywords: "BBQ Multan, Best BBQ Restaurant Multan, Grilled Meat Multan, Mutton Kadai, Gulgasht BBQ, Pakistani Food Delivery Multan", metadataBase: new URL("https://alnemat-bbq.pk"),
alternates: {
canonical: "https://alnemat-bbq.pk"},
openGraph: {
title: "Al Nemat BBQ - Multan's Favorite Grilled Meat Restaurant", description: "Freshly grilled BBQ, authentic Pakistani dishes & fast delivery. 4.8★ rated. Order now!", url: "https://alnemat-bbq.pk", siteName: "Al Nemat Restaurant & BBQ", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-steak-with-fried-ribs-with-fried-chicken-potatoes-board-with-sauce_141793-4233.jpg", alt: "Al Nemat BBQ Platter"},
],
},
twitter: {
card: "summary_large_image", title: "Al Nemat BBQ - Best Grilled Meat in Multan", description: "Authentic BBQ & Pakistani cuisine. Dine-in, Takeout & Delivery. Call +92 300 2349363", images: ["http://img.b2bpic.net/free-photo/top-view-steak-with-fried-ribs-with-fried-chicken-potatoes-board-with-sauce_141793-4233.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Al Nemat - Multan's Best BBQ & Paratha Rolls", description: "Freshly Grilled BBQ, Karahi, Fish & Rolls Dine-In, Takeout & Delivery Available. Trusted by 1,277+ Happy Customers"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -45,7 +45,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Call Now", href: "tel:+923002349363" },
{ text: "Order BBQ Now", href: "tel:+923002349363" },
{ text: "Order on WhatsApp", href: "https://wa.me/923002349363" }
]}
buttonAnimation="slide-up"