Files
33314f8f-3605-4829-92d4-98a…/src/app/layout.tsx
2026-03-25 17:50:48 +00:00

70 lines
2.2 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google";
export const metadata: Metadata = {
title: 'Muneshwara Condiments - Fresh Tea, Snacks & Bakery in Bengaluru',
description: 'Welcome to Muneshwara Condiments, your local spot for freshly brewed tea, delicious hot snacks, traditional Idli & Vada, and bakery delights in Jayanagar, Bengaluru.',
keywords: ["Iyengar bakery, Bengaluru, Singapura Village, fresh bakery, cakes, cookies, puffs, Dilpasand, sweets, traditional bakery"],
openGraph: {
"title": "L.J Iyengar Bakery & Sweets",
"description": "Fresh Bakery Items and Traditional Treats in Singapura, Bengaluru.",
"url": "/",
"siteName": "L.J Iyengar Bakery & Sweets",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/front-view-delicious-bagels-with-cakes-inside-plate-white-desk_140725-63675.jpg",
"alt": "Freshly baked bread and pastries at L.J Iyengar Bakery"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "L.J Iyengar Bakery & Sweets",
"description": "Fresh Bakery Items and Traditional Treats in Singapura, Bengaluru.",
"images": [
"http://img.b2bpic.net/free-photo/front-view-delicious-bagels-with-cakes-inside-plate-white-desk_140725-63675.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}