From 1359a190cd741b56a81b783a146b06e4ad295e5a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:53:35 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1408 +------------------------------------------- 1 file changed, 6 insertions(+), 1402 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5367d1d..f57dc03 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,20 @@ 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "INSERT Build Coffee | Luxury Breakfast & Specialty Matcha", description: "Handcrafted breakfast, specialty matcha lattes, and cozy brunch experience in a warm luxury café. Unique dishes, vegan options, and culinary care in every plate.", keywords: "luxury cafe, breakfast, matcha latte, brunch, artisan food, specialty coffee, vegan breakfast", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "INSERT Build Coffee | Luxury Breakfast & Specialty Matcha", description: "Start your day beautifully with handcrafted breakfast and specialty matcha drinks at INSERT Build Coffee.", url: "https://insertbuildcoffee.com", siteName: "INSERT Build Coffee", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-delicious-breakfast-ready-be-served_23-2148566806.jpg", alt: "Luxury breakfast spread at INSERT Build Coffee"}, - ], - }, - twitter: { - card: "summary_large_image", title: "INSERT Build Coffee | Luxury Breakfast", description: "Handcrafted breakfast and specialty matcha in a warm luxury café experience.", images: ["http://img.b2bpic.net/free-photo/top-view-delicious-breakfast-ready-be-served_23-2148566806.jpg"], - }, -}; + title: "INSERT Build Coffee", description: "Original breakfasts, handcrafted matcha, and a café experience designed to slow down your morning."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -