5 Commits

Author SHA1 Message Date
a66f5e7a3b Update src/app/page.tsx 2026-03-05 02:31:24 +00:00
49980e5bb9 Update src/app/layout.tsx 2026-03-05 02:31:23 +00:00
6ef6dcd915 Merge version_1 into main
Merge version_1 into main
2026-03-05 02:30:31 +00:00
cab40e5e40 Merge version_1 into main
Merge version_1 into main
2026-03-05 02:29:41 +00:00
41eda2e9be Merge version_1 into main
Merge version_1 into main
2026-03-05 02:28:35 +00:00
2 changed files with 8 additions and 35 deletions

View File

@@ -1,46 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { 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"), title: "Create Next App", description: "Generated by create next app"};
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"]
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1408,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -61,8 +61,8 @@ export default function LandingPage() {
{ imageSrc: "http://img.b2bpic.net/free-photo/group-happy-young-friends-near-campfire-glamping-night-two-men-women-playing-guitar_1268-18297.jpg", imageAlt: "Fire pit area" } { imageSrc: "http://img.b2bpic.net/free-photo/group-happy-young-friends-near-campfire-glamping-night-two-men-women-playing-guitar_1268-18297.jpg", imageAlt: "Fire pit area" }
]} ]}
buttons={[ buttons={[
{ text: "View Cabins", href: "cabins" }, { text: "Book a Cabin", href: "cabins" },
{ text: "View Rentals", href: "rentals" } { text: "Rent Equipment", href: "rentals" }
]} ]}
buttonAnimation="blur-reveal" buttonAnimation="blur-reveal"
/> />