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}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 97dee8c..2a88e5a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -39,7 +39,8 @@ export default function HomePage() {
brandName="ReviewHub Potch"
navItems={navItems}
button={{
- text: "Claim Your Business", href: "#"}}
+ text: "Claim Your Business", href: "#"
+ }}
/>
@@ -50,7 +51,7 @@ export default function HomePage() {
description="Discover Potchefstroom's best businesses through authentic community reviews. Business owners: claim your listing free, then unlock premium visibility to reach more customers."
background={{ variant: "radial-gradient" }}
buttons={[
- { text: "Browse Businesses", href: "/businesses" },
+ { text: "Find Local Businesses Free", href: "/businesses" },
{ text: "Claim Your Business", href: "#" },
]}
layoutOrder="default"
@@ -66,7 +67,8 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}