feat: add improved pi agent with observatory, dashboard, and pledge-now-pay-later

This commit is contained in:
Azreen Jamal
2026-03-01 23:41:24 +08:00
parent ae242436c9
commit f832b913d5
99 changed files with 20949 additions and 74 deletions

View File

@@ -0,0 +1,20 @@
import type { Metadata } from "next"
import { ToastProvider } from "@/components/ui/toast"
import "./globals.css"
export const metadata: Metadata = {
title: "Pledge Now, Pay Later",
description: "Convert pledges into collected donations for UK charities",
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>
<ToastProvider>
{children}
</ToastProvider>
</body>
</html>
)
}