diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5f7fd45..307f6f2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,67 +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: "ReviewHub Potchefstroom | Discover & Review Local Businesses", - description: "Find authentic reviews of Potchefstroom businesses. Business owners: claim your free listing, unlock premium visibility. Join our thriving local community today.", - keywords: "Potchefstroom reviews, local business reviews, business listings, restaurant reviews, local directory", - metadataBase: new URL("https://reviewhub-potch.com"), - alternates: { - canonical: "https://reviewhub-potch.com", - }, - openGraph: { - title: "ReviewHub Potchefstroom | Discover Local Businesses", - description: "Authentic reviews and visibility tools for Potchefstroom's best businesses", - url: "https://reviewhub-potch.com", - siteName: "ReviewHub Potchefstroom", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/flat-hotel-review-background_23-2148156421.jpg", - alt: "ReviewHub Potchefstroom Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ReviewHub Potchefstroom | Local Business Reviews & Visibility", - description: "Discover authentic reviews. Business owners: boost your visibility.", - images: ["http://img.b2bpic.net/free-vector/flat-hotel-review-background_23-2148156421.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ReviewHub Potchefstroom", description: "Discover Potchefstroom's best businesses through authentic community reviews."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}