Update src/app/layout.tsx

This commit is contained in:
2026-02-23 15:11:01 +00:00
parent 92c25a962f
commit 42625344a3

View File

@@ -9,23 +9,23 @@ const outfit = Outfit({
});
export const metadata: Metadata = {
title: "Artisan Bakery | Fresh Baked Goods Made with Love", description: "Discover handcrafted pastries and breads made with passion and traditional techniques. Experience the warmth of our artisanal bakery in the heart of the community.", keywords: ["artisan bakery", "handcrafted pastries", "fresh bread", "local bakery", "traditional baking"],
title: "Artisan Bakery | Fresh Baked Goods Made with Love", description: "Discover handcrafted pastries and breads made with passion and traditional techniques. Experience the warmth of our cozy bakery.", keywords: "artisan bakery, fresh baked goods, pastries, sourdough, handcrafted bread", openGraph: {
title: "Artisan Bakery | Fresh Baked Goods Made with Love", description: "Discover handcrafted pastries and breads made with passion and traditional techniques.", type: "website"},
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${outfit.variable} antialiased`}
>
<html lang="en" className={outfit.variable}>
<body className="bg-white text-gray-900">
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1393,7 +1393,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}