Merge version_2 into main #4
@@ -1,50 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Trading Dashboard - Bloomberg-Lite Interface", description: "Bloomberg-inspired trading dashboard with portfolio tracking, real-time analytics, risk analysis, and market news. Professional-grade interface for serious traders.", keywords: "trading dashboard, portfolio management, financial analytics, bloomberg, trader platform", metadataBase: new URL("https://tradinghub.example.com"),
|
||||
alternates: {
|
||||
canonical: "https://tradinghub.example.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Professional Trading Dashboard", description: "Bloomberg-lite trading interface for portfolio management and market analysis", url: "https://tradinghub.example.com", siteName: "TradingHub", type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Professional Trading Dashboard", description: "Bloomberg-inspired interface for traders and portfolio managers"
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "TradingHub - Professional Trading Dashboard", description: "Bloomberg-inspired trading dashboard for professional traders and portfolio managers"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -192,8 +192,8 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Get Started Today"
|
||||
description="Join thousands of professional traders using our Bloomberg-inspired dashboard. Fill out the form below and our team will be in touch to help you maximize your trading potential."
|
||||
title="Get Your Personalized Trading Dashboard Demo"
|
||||
description="Get your personalized trading dashboard demo in 24 hours"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "your.email@company.com", required: true },
|
||||
@@ -209,7 +209,7 @@ export default function LandingPage() {
|
||||
imageAlt="Contact section illustration"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
buttonText="Request Demo"
|
||||
buttonText="Get My Demo"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user