Update src/app/layout.tsx

This commit is contained in:
2025-12-29 23:06:43 +00:00
parent 4200728a95
commit f61edf9782

View File

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