Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 53596f67cd | |||
| f7dfa9e098 | |||
| 4a7401a525 | |||
| 8855a64fbe | |||
| 4b1c54fb51 | |||
| d4d27bbd84 | |||
| 409d758413 | |||
| 3aa9b9d250 |
@@ -1,50 +1,21 @@
|
||||
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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ export default function AffiliateHubPage() {
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
title="Why Choose AffiliateHub?"
|
||||
description="We've built the most intuitive affiliate platform for modern marketers. Transparent commissions, real-time tracking, and dedicated support to help you succeed."
|
||||
description="50,000+ active affiliates have earned $25M in commissions. We've built the most intuitive affiliate platform for modern marketers. Transparent commissions, real-time tracking, and dedicated support to help you succeed."
|
||||
tag="Our Mission"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -253,7 +253,7 @@ export default function AffiliateHubPage() {
|
||||
<ContactCenter
|
||||
tag="Ready to Earn?"
|
||||
title="Join AffiliateHub Today"
|
||||
description="Start your affiliate journey with the most trusted platform in the industry. Sign up now and begin earning passive income."
|
||||
description="Join 50,000+ affiliates already earning. Get instant access to your dashboard and start promoting within minutes."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="your@email.com"
|
||||
|
||||
Reference in New Issue
Block a user