|
|
|
|
@@ -1,55 +1,25 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Public_Sans } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const publicSans = Public_Sans({
|
|
|
|
|
variable: "--font-public-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
import "./styles/variables.css";
|
|
|
|
|
import "./styles/base.css";
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "TradeLunch - Trade Lunch, Connect Better", description: "Exchange lunch options with traders worldwide. Real-time trading, secure transactions, and a professional community for financial professionals.", keywords: "lunch trading, professional network, traders, financial community, lunch exchange, workplace connections", metadataBase: new URL("https://tradelunch.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://tradelunch.com"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "TradeLunch - Trade Lunch, Connect Better", description: "The platform where traders exchange lunch options and build meaningful professional relationships.", url: "https://tradelunch.com", siteName: "TradeLunch", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aawsm4D3MwFEP1ZokfeivoahWq/a-modern-trading-lunch-app-dashboard-sho-1772844337200-08936dc1.png", alt: "TradeLunch Dashboard"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "TradeLunch - Trade Lunch, Connect Better", description: "Exchange lunch options with traders worldwide. Real-time trading and professional connections.", images: [
|
|
|
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aawsm4D3MwFEP1ZokfeivoahWq/a-modern-trading-lunch-app-dashboard-sho-1772844337200-08936dc1.png"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "TradeLunch - Broker Platform", description: "Connect, trade lunch, and grow your professional network"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.variable}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1417,7 +1387,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|