diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index dd8d55e..3934cc2 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index d0f8bda..d305fe0 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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 (
);
-}
\ No newline at end of file
+}