5 Commits

Author SHA1 Message Date
20053df4ca Merge version_3 into main
Merge version_3 into main
2026-03-07 00:52:03 +00:00
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 type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./styles/variables.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import "./styles/base.css";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({ const inter = Inter({
variable: "--font-inter", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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"), title: "TradeLunch - Broker Platform", description: "Connect, trade lunch, and grow your professional network"};
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
}
};
export default function RootLayout({ export default function RootLayout({
children children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.variable}>
<body {children}
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1417,7 +1387,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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