From 45b1a16eb12b42cd46a45c35c3622118f3b7fdcc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:24:23 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 61 +++++++++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 625af20..586f4a2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,47 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Libre_Baskerville } from "next/font/google"; -import { Figtree } from "next/font/google"; - - +import { BitcountGridDoubleInk } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; +const bitcountGridDoubleInk = BitcountGridDoubleInk({ + variable: "--font-bitcount-grid-double-ink", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Brew Haven | Premium Specialty Coffee Shop", description: "Discover exceptional specialty coffee handcrafted by passionate baristas. Ethically sourced, expertly roasted, and served with care.", keywords: "coffee shop, specialty coffee, espresso, cold brew, artisan coffee, barista, sustainable coffee", robots: { - index: true, - follow: true, - }, -}; - - -const figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); + title: "Brew Haven - Premium Specialty Coffee", description: "Experience the finest specialty coffee crafted by passionate baristas. From single-origin espresso to artisan cold brew."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} -