diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3ba13fa..332d5ba 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}