Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 70d966d5ae | |||
| f92221262f | |||
| fc045a847d | |||
| 3e0f660b24 |
@@ -1,50 +1,39 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Instrument_Sans } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Open_Sans } 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 halant = Halant({
|
const instrumentSans = Instrument_Sans({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-instrument-sans", 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"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
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: {
|
alternates: {
|
||||||
canonical: "https://polymarkettradingcommunity.com"},
|
canonical: "https://polymarkettradingcommunity.com"
|
||||||
|
},
|
||||||
openGraph: {
|
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: [
|
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: {
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${instrumentSans.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
|
|||||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
|
import ButtonHoverMagnetic from '@/components/button/ButtonHoverMagnetic/ButtonHoverMagnetic';
|
||||||
import { CheckCircle, Sparkles, TrendingUp, Zap } from 'lucide-react';
|
import { CheckCircle, Sparkles, TrendingUp, Zap } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -105,6 +106,13 @@ export default function LandingPage() {
|
|||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
<div className="flex justify-center py-12 md:py-16 lg:py-20">
|
||||||
|
<ButtonHoverMagnetic
|
||||||
|
text="Join Discord"
|
||||||
|
href="https://discord.gg"
|
||||||
|
strengthFactor={20}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-open-sans), sans-serif;
|
font-family: var(--font-instrument-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-open-sans), sans-serif;
|
font-family: var(--font-instrument-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user