|
|
|
|
@@ -1,47 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Lato } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const lato = Lato({
|
|
|
|
|
variable: "--font-lato", subsets: ["latin"],
|
|
|
|
|
weight: ["100", "300", "400", "700", "900"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Dilber Sohan Halwa - Premium Traditional Pakistani Confectionery", description: "Authentic Sohan Halwa crafted with traditional recipes, premium desi ghee, and finest dry fruits. 40+ years of heritage excellence in Bannu.", keywords: "sohan halwa, Pakistani sweets, confectionery, desi ghee, dry fruits, traditional halwa, Bannu, authentic sweets", metadataBase: new URL("https://dilbersohanhalwa.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://dilbersohanhalwa.com"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Dilber Sohan Halwa - Premium Traditional Pakistani Confectionery", description: "Experience authentic Sohan Halwa with 40+ years of heritage. Premium ingredients, traditional craftsmanship.", url: "https://dilbersohanhalwa.com", siteName: "Dilber Sohan Halwa", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/cookies-roll-cake-board-blue-table_114579-82875.jpg", alt: "Premium Dilber Sohan Halwa"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Dilber Sohan Halwa - Premium Traditional Pakistani Confectionery", description: "Authentic Sohan Halwa with 40+ years of heritage. Premium desi ghee and finest dry fruits.", images: ["http://img.b2bpic.net/free-photo/cookies-roll-cake-board-blue-table_114579-82875.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "Dilber Sohan Halwa - Premium Pakistani Confectionery", description: "Experience authentic Sohan Halwa crafted with traditional recipes, premium desi ghee, and finest dry fruits from Bannu, Pakistan."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body className={`${lato.variable} antialiased`}>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1409,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|