From 4b1c54fb51bc19cab4f7ed5bbceb08bcec44f210 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 12:47:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++------------------------------------- 1 file changed, 6 insertions(+), 37 deletions(-) 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}