From 90fa4c7bcfca0dca0c147cb493418ab2d1961a96 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 15:17:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 43a7917..be4f73d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Maria Cafe | Premium Coffee & Community Space", description: "Experience Maria Cafe, your local destination for specialty coffee, artisan pastries, and warm community. Open daily with WiFi and event spaces available.", keywords: "cafe, coffee shop, specialty coffee, pastries, community cafe, cozy coffee shop near me", metadataBase: new URL("https://mariacafe.com"), - alternates: { - canonical: "https://mariacafe.com"}, - openGraph: { - title: "Maria Cafe | Premium Coffee & Community", description: "Discover Maria Cafe - premium specialty coffee, fresh pastries, and a welcoming community space for everyone.", url: "https://mariacafe.com", siteName: "Maria Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/conducting-interview-fashionable-restaurant_1098-13338.jpg", alt: "Maria Cafe interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Maria Cafe | Premium Coffee & Community", description: "Experience exceptional specialty coffee and artisan pastries at Maria Cafe.", images: ["http://img.b2bpic.net/free-photo/conducting-interview-fashionable-restaurant_1098-13338.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Maria Cafe", description: "Welcome to Maria Cafe, where every cup tells a story."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}