From 49980e5bb91e488de9503633c5a4360355b42005 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:31:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 39 ++++++--------------------------------- 1 file changed, 6 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ca1e68a..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,20 @@ import type { Metadata } from "next"; -import { DM_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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Rangeley Lake Cabin & Boat Rentals | Maine Getaway", description: "Premium cabin rentals and water sports equipment in Rangeley, Maine. Book your lakefront retreat with boats, kayaks, and canoes. Unforgettable outdoor adventures await.", keywords: "cabin rental Maine, Rangeley Lake, boat rental, vacation rental, water sports, kayak, fishing", metadataBase: new URL("https://rangeleylakerental.com"), - openGraph: { - title: "Rangeley Lake Cabin & Boat Rentals", description: "Experience lakefront luxury and outdoor adventure in Rangeley, Maine", type: "website", siteName: "Rangeley Lake Rentals", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-view-fisherman-catching-fish-from-lake_181624-59709.jpg", alt: "Rangeley Lake scenic view" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Rangeley Lake Cabin & Boat Rentals", description: "Book your Maine lakefront getaway today", images: ["http://img.b2bpic.net/free-photo/beautiful-view-fisherman-catching-fish-from-lake_181624-59709.jpg"] - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}