From c0d7ecb561a5fcfa7a0fddc4d2a6b000b2a6eed0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:05:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 63 +++++----------------------------------------- 1 file changed, 6 insertions(+), 57 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3fd38b7..0810e9f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,67 +1,17 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Aesthetic Cafe | Where Every Sip Becomes a Moment", - description: "Experience the ultimate Instagram-worthy cafe. Handcrafted specialty drinks, artisan pastries, and beautifully designed spaces perfect for remote work or celebrations.", - keywords: "aesthetic cafe, specialty coffee, artisan pastries, Instagram cafe, remote work space, cafe reservations, coffee culture, instagrammable spaces", - metadataBase: new URL("https://aestheticcafe.com"), - alternates: { - canonical: "https://aestheticcafe.com", - }, - openGraph: { - title: "Aesthetic Cafe | Where Every Sip Becomes a Moment", - description: "Discover our carefully curated aesthetic cafe with handcrafted drinks, Instagramperfect spaces, and unforgettable vibes.", - url: "https://aestheticcafe.com", - siteName: "Aesthetic Cafe", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg", - alt: "Aesthetic Cafe interior with warm lighting", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Aesthetic Cafe | Where Every Sip Becomes a Moment", - description: "Experience handcrafted coffee and artisan pastries in our beautifully designed aesthetic spaces.", - images: ["http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Aesthetic Cafe", description: "Where Every Sip Becomes a Moment"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}