From 15ff33773cae22a3559a1b377b6d6c0ba395388f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 18:25:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2786 -------------------------------------------- 1 file changed, 2786 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 253fe57..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2786 +0,0 @@ -import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Eats Bakery & Coffee | Luxury Handcrafted Pastries & Bold Coffee in Raleigh", description: "Experience handcrafted pastries, specialty coffee, and authentic flavors at Eats Bakery & Coffee in Raleigh. Fresh daily, made with care. Order online or visit us today.", keywords: "bakery Raleigh, coffee shop, croissants, pastries, artisan bakery, specialty coffee, cakes, handmade pastries, NC bakery", metadataBase: new URL("https://eatsbakery.com"), - alternates: { - canonical: "https://eatsbakery.com"}, - openGraph: { - title: "Eats Bakery & Coffee | Luxury Handcrafted Pastries", description: "Fresh pastries, bold coffee, and comfort baked daily. Experience handcrafted excellence.", url: "https://eatsbakery.com", siteName: "Eats Bakery & Coffee", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/muffins-coffee-wooden-board_23-2147693734.jpg", alt: "Fresh pastries and coffee at Eats Bakery"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Eats Bakery & Coffee | Luxury Handcrafted Pastries", description: "Fresh pastries, bold coffee, comfort baked daily.", images: ["http://img.b2bpic.net/free-photo/muffins-coffee-wooden-board_23-2147693734.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -