event rsvp popup

This commit is contained in:
2025-07-05 20:29:09 -04:00
parent 2d62fb7d48
commit de40c78f47
7 changed files with 282 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
import type { Metadata } from "next";
import "./globals.css";
import { Toaster } from "@/components/ui/sonner";
export const metadata: Metadata = {
title: "Wedding Planner",
@@ -18,6 +19,7 @@ export default async function RootLayout({
className="bg-brand-background text-brand-text"
>
{children}
<Toaster />
</body>
</html>
);