From aeea268bfcb1dfcace5f2172a4907094496b6ad8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:33:45 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 6 insertions(+), 1413 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4f52f56..f1ba97f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Local Mattress Shop - Premium Mattresses & Expert Sleep Advice", description: "Find the perfect mattress from local sleep experts. Try before you buy with same-day delivery & 30-day guarantee. Visit our showroom today.", keywords: "mattress store, memory foam mattress, hybrid mattress, orthopedic mattress, local mattress shop, best mattress near me, mattress delivery", metadataBase: new URL("https://www.bettersleeplocal.com"), - alternates: { - canonical: "https://www.bettersleeplocal.com"}, - openGraph: { - title: "Better Sleep Local - Local Mattress Experts", description: "Discover premium mattresses from local sleep experts. Try before you buy with expert guidance and same-day delivery.", url: "https://www.bettersleeplocal.com", siteName: "Better Sleep Local", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-home-bed_1157-31070.jpg", alt: "Better Sleep Local - Premium Mattresses"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Better Sleep Local - Your Local Mattress Experts", description: "Premium mattresses with expert guidance, in-store testing, and same-day delivery available.", images: ["http://img.b2bpic.net/free-photo/beautiful-girl-sitting-home-bed_1157-31070.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Better Sleep Local - Premium Mattresses", description: "Discover premium mattresses from local sleep experts. Try before you buy, with expert guidance and same-day delivery available."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -