Update src/app/layout.tsx

This commit is contained in:
2026-03-06 01:23:41 +00:00
parent 2c78da7726
commit 9eb620999c

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "The Artisan Café - Premium Specialty Coffee Experience", description: "Discover exceptional specialty coffee and artisanal pastries at The Artisan Café. Premium beans, expert baristas, and sophisticated ambiance.", keywords: "specialty coffee, café, artisan, premium coffee, barista, espresso, café experience", robots: {
index: true,
follow: true,
},
openGraph: {
title: "The Artisan Café - Premium Coffee", description: "Experience the finest specialty coffee with our expert baristas and premium beans.", type: "website", siteName: "The Artisan Café", images: [
{
url: "http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg", alt: "Premium Café Interior"},
],
},
twitter: {
card: "summary_large_image", title: "The Artisan Café - Premium Coffee Experience", description: "Exceptional specialty coffee and artisanal pastries await you.", images: ["http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg"],
},
};
title: "The Artisan Café", description: "Experience premium coffee craftsmanship"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}