Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 09:25:22 +00:00
2 changed files with 15 additions and 37 deletions

View File

@@ -1,49 +1,28 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "fx_mali | Premium Forex Trading Strategies & Community", description: "Master forex trading with fx_mali's proven strategies, real-time insights, and community support. Learn consistent profitable trading on TikTok.", keywords: "forex trading, trading strategies, currency trading, market analysis, trading education", metadataBase: new URL("https://fx-mali-trading.com"),
alternates: {
canonical: "https://fx-mali-trading.com"
},
openGraph: {
title: "fx_mali Trading | Master Forex with Proven Strategies", description: "Join 1000+ traders learning from fx_mali's premium trading methodology. Real results, clear strategies, proven success.", url: "https://fx-mali-trading.com", siteName: "fx_mali Trading", type: "website"
},
twitter: {
card: "summary_large_image", title: "fx_mali | Forex Trading Excellence", description: "Premium trading strategies and insights for consistent profits"
},
robots: {
index: true,
follow: true
}
};
title: "fx_mali Trading", description: "Master forex trading with proven strategies and real-time insights"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -78,7 +78,7 @@ export default function LandingPage() {
}
]}
buttons={[
{ text: "Watch on TikTok", href: "https://www.tiktok.com/@fx_mali" },
{ text: "Start Free Trading", href: "https://www.tiktok.com/@fx_mali" },
{ text: "Learn More", href: "#about" }
]}
buttonAnimation="slide-up"
@@ -257,4 +257,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}