diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index f7fa87eb..c0c31280 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +import { ToastProvider } from "@/components/ui/toast-provider"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -13,8 +14,8 @@ const geistMono = Geist_Mono({ }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Lance - Decentralized Freelance Marketplace", + description: "Stellar-native freelance marketplace with AI-powered dispute resolution", }; export default function RootLayout({ @@ -27,7 +28,7 @@ export default function RootLayout({
- {children} +