diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 5db02a0..181dd57 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-