diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 25ab61a..308ada3 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,50 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Roboto } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const roboto = Roboto({
- variable: "--font-roboto", subsets: ["latin"],
- weight: ["100", "300", "400", "500", "700", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "AffiliateHub - Premium Affiliate Marketing Platform", description: "Join 50K+ successful affiliates earning passive income. Competitive commissions up to 30%, real-time tracking, and 24/7 support. Start earning today.", keywords: "affiliate marketing, earn commissions, passive income, affiliate program, marketing platform, performance tracking", openGraph: {
- title: "AffiliateHub - Earn More as an Affiliate", description: "Premium affiliate platform with 30% commissions, real-time tracking, and dedicated support. Join thousands of successful partners.", siteName: "AffiliateHub", type: "website"},
- twitter: {
- card: "summary_large_image", title: "AffiliateHub - Premium Affiliate Marketing Platform", description: "Earn up to 30% recurring commissions with real-time tracking and dedicated support."},
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "AffiliateHub - Earn Passive Income", description: "Join 50,000+ affiliates earning with AffiliateHub's premium affiliate marketing platform."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 9c79fbb..9170cde 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -253,7 +253,7 @@ export default function AffiliateHubPage() {