Merge version_2 into main #1
@@ -1,33 +1,34 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Space_Grotesk } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const spaceGrotesk = Space_Grotesk({
|
||||
variable: "--font-space-grotesk",
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AffiliateHub - Earn More with Affiliate Marketing",
|
||||
description: "Join thousands of successful affiliates. Unlock your earning potential with real-time analytics, marketing automation, and 24/7 support.",
|
||||
keywords: ["affiliate marketing", "earn money", "affiliate program", "commission tracking", "marketing platform"],
|
||||
metadataBase: new URL("https://affiliatehub.com"),
|
||||
title: "Fashion Forward - Premium Clothing Collection",
|
||||
description: "Discover our curated collection of premium clothing. High-quality fabrics, modern designs, and timeless styles for every occasion.",
|
||||
keywords: ["fashion", "clothing", "premium wear", "designer clothes", "style"],
|
||||
metadataBase: new URL("https://fashionforward.com"),
|
||||
alternates: {
|
||||
canonical: "https://affiliatehub.com"
|
||||
canonical: "https://fashionforward.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "AffiliateHub - Earn More with Affiliate Marketing",
|
||||
description: "Join thousands of successful affiliates. Unlock your earning potential with real-time analytics, marketing automation, and 24/7 support.",
|
||||
url: "https://affiliatehub.com",
|
||||
siteName: "AffiliateHub",
|
||||
title: "Fashion Forward - Premium Clothing Collection",
|
||||
description: "Discover our curated collection of premium clothing. High-quality fabrics, modern designs, and timeless styles for every occasion.",
|
||||
url: "https://fashionforward.com",
|
||||
siteName: "Fashion Forward",
|
||||
type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "AffiliateHub - Earn More with Affiliate Marketing",
|
||||
description: "Join thousands of successful affiliates. Unlock your earning potential with real-time analytics, marketing automation, and 24/7 support."
|
||||
title: "Fashion Forward - Premium Clothing Collection",
|
||||
description: "Discover our curated collection of premium clothing. High-quality fabrics, modern designs, and timeless styles for every occasion."
|
||||
}
|
||||
};
|
||||
|
||||
@@ -40,7 +41,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={spaceGrotesk.variable}
|
||||
className={poppins.variable}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1266,4 +1267,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user