Update src/app/layout.tsx

This commit is contained in:
2026-03-19 16:53:03 +00:00
parent ffe7b7a889
commit 9785e1d154

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "EliteFlow Trading - Institutional Binary Options Platform",
description: "Access a regulated binary options trading platform for sophisticated investors. Verified performance, advanced risk management, and institutional-grade security. Trade with confidence.",
keywords: "binary options trading, regulated platform, institutional trading, risk management, fintech, binary trading platform",
metadataBase: new URL("https://eliteflowtrading.com"),
alternates: {
canonical: "https://eliteflowtrading.com",
},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "EliteFlow Trading - Sophisticated Investor Platform",
description: "Trade binary options with institutional-level security and verified performance. Regulated by FCA, CySEC, and ASIC.",
url: "https://eliteflowtrading.com",
siteName: "EliteFlow Trading",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-vector/fitness-mobile-app-infographic-template-flat-style_23-2148219822.jpg",
alt: "EliteFlow Trading Platform Interface",
},
],
},
twitter: {
card: "summary_large_image",
title: "EliteFlow Trading Platform",
description: "Institutional-grade binary options trading with verified performance and regulatory compliance.",
images: ["http://img.b2bpic.net/free-vector/fitness-mobile-app-infographic-template-flat-style_23-2148219822.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script