From c2110d2ae49c2ff19e226d3b59b5850a6917843e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 13:15:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1416 +------------------------------------------- 1 file changed, 5 insertions(+), 1411 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ef33f34..6274263 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Boba Haven - Premium Customizable Bubble Tea in Vancouver", description: "Experience artisanal bubble tea crafted to your taste. Choose your sweetness, toppings, and more at Vancouver's favorite boba shop.", keywords: "bubble tea, boba, Vancouver, customizable drinks, milk tea, matcha", openGraph: { - title: "Boba Haven - Your Perfect Bubble Tea", description: "Customizable premium boba tea in Vancouver. Brown sugar, jasmine, mango, matcha and more.", siteName: "Boba Haven", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/mid-shot-young-women-holding-fresh-drinks-sitting-table_23-2148784279.jpg", alt: "Boba Haven signature drinks" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Boba Haven - Vancouver's Best Bubble Tea", description: "Customize your perfect drink. Premium ingredients, your preferences.", images: ["http://img.b2bpic.net/free-photo/mid-shot-young-women-holding-fresh-drinks-sitting-table_23-2148784279.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Boba Haven - Premium Bubble Tea in Vancouver", description: "Artisanal bubble tea crafted to your taste. Premium ingredients, complete customization, and authentic flavors."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -