Update src/app/layout.tsx
This commit is contained in:
@@ -1,50 +1,39 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Instrument_Sans } 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 openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
const instrumentSans = Instrument_Sans({
|
||||
variable: "--font-instrument-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Polymarket Copy Trading Discord Community | $49/mo or Lifetime", description: "Join 2,500+ traders in our Discord community. Risk-managed Polymarket copy trading with AI signals. $49/month or $149 lifetime. Start earning today.", keywords: "polymarket, copy trading, cryptocurrency trading, trading signals, discord community", metadataBase: new URL("https://polymarkettradingcommunity.com"),
|
||||
alternates: {
|
||||
canonical: "https://polymarkettradingcommunity.com"},
|
||||
canonical: "https://polymarkettradingcommunity.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Polymarket Copy Trading Discord Community", description: "Join our community of professional traders. Get copy trading signals, risk management tools, and lifetime access to premium strategies.", url: "https://polymarkettradingcommunity.com", siteName: "Polymarket Copy Trading", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/laptop-with-graphs-statistics-glasses-table_169016-29669.jpg", alt: "Trading Dashboard"},
|
||||
],
|
||||
url: "http://img.b2bpic.net/free-photo/laptop-with-graphs-statistics-glasses-table_169016-29669.jpg", alt: "Trading Dashboard"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Polymarket Copy Trading Discord Community", description: "Join 2,500+ traders. $49/month or $149 lifetime access.", images: ["http://img.b2bpic.net/free-photo/laptop-with-graphs-statistics-glasses-table_169016-29669.jpg"],
|
||||
},
|
||||
card: "summary_large_image", title: "Polymarket Copy Trading Discord Community", description: "Join 2,500+ traders. $49/month or $149 lifetime access.", images: ["http://img.b2bpic.net/free-photo/laptop-with-graphs-statistics-glasses-table_169016-29669.jpg"]
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
children
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<body className={`${instrumentSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user