Update src/app/layout.tsx

This commit is contained in:
2026-03-19 20:25:16 +00:00
parent ee4e2cd99c
commit 8f5a9bdf14

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Lato } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const lato = Lato({
variable: "--font-lato",
@@ -20,6 +24,39 @@ const lato = Lato({
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = {
title: "Paan Paradise - Fresh Authentic Paan Delivery Online",
description: "Order fresh, authentic paan online. Sweet paan, Sada paan, and premium tobacco varieties. Bulk discounts on 7, 15, 25+ orders. Available on Zomato, Swiggy, and direct delivery.",
keywords: "paan delivery, fresh paan online, sweet paan, sada paan, tobacco paan, paan shop near me, authentic paan, paan bulk order, local paan delivery, Indian paan",
metadataBase: new URL("https://paanparadise.com"),
alternates: {
canonical: "https://paanparadise.com",
},
openGraph: {
title: "Paan Paradise - Fresh Authentic Paan Delivery",
description: "Experience authentic, freshly made paan delivered to your door. Order now on Zomato, Swiggy, or direct.",
url: "https://paanparadise.com",
siteName: "Paan Paradise",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/vertical-shot-chiles-en-nogada-plate-wooden-board-table_181624-43895.jpg",
alt: "Fresh Paan Paradise Delivery",
},
],
},
twitter: {
card: "summary_large_image",
title: "Paan Paradise - Fresh Authentic Paan",
description: "Order fresh paan online. Sweet, Sada, and premium tobacco varieties with bulk discounts.",
images: ["http://img.b2bpic.net/free-photo/vertical-shot-chiles-en-nogada-plate-wooden-board-table_181624-43895.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +65,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}