From 7ea6da300fe1e450631191acbe3abb8aac21b510 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 01:48:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1425 -------------------------------------------- 1 file changed, 1425 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6f7b155..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Eat Cake Houston | Premium Custom Cakes & Gourmet Desserts", description: "Luxury handcrafted cakes, gooey cookies, and decadent desserts in Houston. Custom cake orders, walk-in treats, and Instagram-worthy creations. Trusted by celebration planners and food lovers.", keywords: "custom cakes Houston, gourmet desserts, handcrafted cakes, celebration cakes, bakery Houston, luxury desserts, cookie delivery Houston", metadataBase: new URL("https://eatcakehouston.com"), - alternates: { - canonical: "https://eatcakehouston.com"}, - openGraph: { - title: "Eat Cake Houston | Premium Custom Cakes & Gourmet Desserts", description: "Handcrafted cakes, gooey cookies, and decadent desserts made to turn everyday moments into celebrations.", url: "https://eatcakehouston.com", siteName: "Eat Cake Houston", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-delicious-chocolate-cake-concept_23-2148801172.jpg", alt: "luxury handcrafted dessert cake display"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Eat Cake Houston | Premium Custom Cakes & Gourmet Desserts", description: "Handcrafted cakes, gooey cookies, and decadent desserts. Custom orders and walk-in treats.", images: ["http://img.b2bpic.net/free-photo/high-angle-delicious-chocolate-cake-concept_23-2148801172.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -