feat: add improved pi agent with observatory, dashboard, and pledge-now-pay-later
This commit is contained in:
20
pledge-now-pay-later/src/app/layout.tsx
Normal file
20
pledge-now-pay-later/src/app/layout.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user