From 3ba7f30908805908f9ec2259f08cac43eb3c0aeb Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 14:55:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1424 +------------------------------------------- 1 file changed, 12 insertions(+), 1412 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 65af9e2..ce3b61a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Brew Haven | Specialty Coffee & Artisanal Cafe", description: "Discover exceptional specialty coffee, ethically sourced beans, and a warm community atmosphere at Brew Haven. Visit us for handcrafted espresso drinks and fresh pastries.", keywords: "specialty coffee, cafe, espresso, latte, artisanal coffee shop, single origin beans", metadataBase: new URL("https://brewhaven.com"), - alternates: { - canonical: "https://brewhaven.com" - }, - openGraph: { - title: "Brew Haven | Your Perfect Cup Awaits", description: "Experience specialty coffee crafted with passion. Fresh roasted beans, expert baristas, and a welcoming community.", url: "https://brewhaven.com", siteName: "Brew Haven", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-albino-woman-sitting-table_23-2150171835.jpg", alt: "Brew Haven Coffee Shop" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Brew Haven | Specialty Coffee", description: "Discover exceptional specialty coffee and artisanal pastries at Brew Haven.", images: ["http://img.b2bpic.net/free-photo/side-view-albino-woman-sitting-table_23-2150171835.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Brew Haven", description: "Specialty coffee crafted with passion and precision"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -