From 01c55509d7f2250be3e0636620e6ec83b7688f81 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 12:32:06 +0000 Subject: [PATCH 1/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 90bd228..940e0e2 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -91,4 +91,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From c125065886d07be6e640503eecb08710ed5bd937 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 12:32:07 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++++++-------------------------------- 1 file changed, 10 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e72aa1f..af01766 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,24 @@ import type { Metadata } from "next"; -import { Roboto } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Brew & Co - Premium Specialty Coffee & Community", description: "Discover exceptional single-origin coffee, expert baristas, and a welcoming community space. Visit Brew & Co for the perfect cup.", keywords: "specialty coffee, espresso, cafe, barista, premium coffee, coffee shop, single origin", openGraph: { - title: "Brew & Co - Premium Specialty Coffee", description: "Experience exceptional coffee and community connection", siteName: "Brew & Co", type: "website", images: [ - { - url: "https://img.b2bpic.net/free-photo/caffeine-romantic-milk-wood-aroma_1232-4541.jpg", alt: "Brew & Co Premium Coffee" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Brew & Co - Premium Specialty Coffee", description: "Exceptional coffee crafted by passionate baristas", images: ["https://img.b2bpic.net/free-photo/cooking-coffee-with-automatic-coffeemachine_1220-5264.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Brew & Co - Premium Specialty Coffee", description: "Experience premium specialty coffee in an inviting space designed for authentic connections and exceptional taste."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}