Merge version_2 into main #4
@@ -1,53 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "The Haunted Bergen House | Paranormal Investigations & Unique Events", description: "Experience authentic paranormal investigations and book unique event venues at The Haunted Bergen House in Bergen, NY. Professional ghost hunting groups and celebrations welcome.", keywords: "haunted house, paranormal investigation, ghost hunting, Bergen NY, paranormal tours, event venue, unique venue, supernatural", metadataBase: new URL("https://hauntedbergenhouse.com"),
|
||||
alternates: {
|
||||
canonical: "https://hauntedbergenhouse.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "The Haunted Bergen House | Paranormal Investigations & Events", description: "Explore paranormal activity or host your unforgettable event at New York's most legendary haunted venue.", url: "https://hauntedbergenhouse.com", siteName: "The Haunted Bergen House", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/beautiful-castle-architecture_23-2150754962.jpg", alt: "The Haunted Bergen House exterior"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "The Haunted Bergen House", description: "Paranormal investigations & unique event venue in Bergen, NY", images: ["http://img.b2bpic.net/free-photo/beautiful-castle-architecture_23-2150754962.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -197,8 +197,8 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
ctaTitle="Ready to Book?"
|
||||
ctaDescription="Call us directly to discuss your experience or event. Our team is available 9am-9pm EST, seven days a week to answer questions and secure your reservation."
|
||||
ctaButton={{ text: "Call: (555) 0123-4567", href: "tel:+1-555-0123-4567" }}
|
||||
ctaDescription="Call us directly to discuss your experience or event. Our team is available 9am-9pm EST, seven days a week. Phone: (555) 0123-4567"
|
||||
ctaButton={{ text: "Schedule Your Experience", href: "tel:+1-555-0123-4567" }}
|
||||
ctaIcon={Phone}
|
||||
faqs={[
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user