diff --git a/app/success/page.tsx b/app/success/page.tsx index 4635d3c..1c6b5d9 100644 --- a/app/success/page.tsx +++ b/app/success/page.tsx @@ -5,53 +5,55 @@ import { Card, CardContent, CardFooter } from "@/components/ui/card"; import { Separator } from "@/components/ui/separator"; import { Check } from "lucide-react"; import Link from "next/link"; +import { motion } from "framer-motion"; export default function SuccessPage() { return ( +
- - -
- -
-

- This event is scheduled -

-

- We emailed you and the other attendees a calendar invitation with - all the details. -

+ {/* Card component with modern styling */} + + + + + + + + - {/* + {/* Title */} +

+ This event is scheduled +

-
-
-

What

-
-
-

Design Workshop

-
+ {/* Description */} +

+ We emailed you and the other attendees a calendar invitation with + all the details. +

+ -
-

When

-
-
-

10:00 - 12:00

-
-
-

Where

-
-
-

Online

-
-
*/} -
- - - -
+ {/* Card footer with close button */} + + + +
+
); }