From 9fddaa981e6def5bbc0ece1c6287bfdc603575d9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 10:17:37 +0000 Subject: [PATCH 1/4] Update src/app/bagels/page.tsx --- src/app/bagels/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/bagels/page.tsx b/src/app/bagels/page.tsx index d96b516..0a42201 100644 --- a/src/app/bagels/page.tsx +++ b/src/app/bagels/page.tsx @@ -92,4 +92,4 @@ export default function BagelsPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 372190f49bc3e15af286ecf27b5c592eacdd5853 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 10:17:38 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++++++---------------------------------- 1 file changed, 10 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c73bf0d..51a4b3a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,22 @@ import type { Metadata } from "next"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Artisan Coffee Co. | Premium Coffee in San Francisco", description: "Discover freshly roasted, expertly crafted coffee in the heart of San Francisco. Visit our cafe for premium espresso, single-origin pour overs, and exceptional service.", keywords: ["coffee shop", "San Francisco", "artisan coffee", "specialty coffee", "espresso", "cafe", "premium roasted beans"], - robots: { - index: true, - follow: true - }, - openGraph: { - title: "Artisan Coffee Co. | Premium Coffee in San Francisco", description: "Discover freshly roasted, expertly crafted coffee in the heart of San Francisco.", type: "website", siteName: "Artisan Coffee Co.", images: [ - { - url: "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg", alt: "Artisan Coffee Co. - San Francisco" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Artisan Coffee Co. | Premium Coffee in San Francisco", description: "Discover freshly roasted, expertly crafted coffee in the heart of San Francisco.", images: ["http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg"] - } -}; + title: "Artisan Coffee Co.", description: "Premium artisan coffee, freshly roasted and expertly prepared"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}