4 Commits

Author SHA1 Message Date
22bd5f0dcc Update src/app/page.tsx 2026-03-07 00:51:59 +00:00
953299f448 Update src/app/layout.tsx 2026-03-07 00:51:58 +00:00
4db1bf520f Merge version_2 into main
Merge version_2 into main
2026-03-07 00:50:22 +00:00
1511726327 Merge version_2 into main
Merge version_2 into main
2026-03-07 00:48:47 +00:00
2 changed files with 13 additions and 44 deletions

View File

@@ -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>
);
}
}

View File

@@ -12,7 +12,7 @@ import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Zap, Sparkles, Users, Shield, MapPin, TrendingUp, Clock, ArrowRight, Building2, BarChart3, Mail } from "lucide-react";
export default function LandingPage() {
export default function BrokerPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -255,4 +255,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}