diff --git a/apps/gifting-concierge/README.md b/apps/gifting-concierge/README.md index d913ac1f..833239a5 100644 --- a/apps/gifting-concierge/README.md +++ b/apps/gifting-concierge/README.md @@ -1,7 +1,7 @@ Tasks: Confirm Gift Tasks: -- [ ] put the gif up top as the first thing people see. +- [x] put the gif up top as the first thing people see. Header: - [ ] Let’s clean up the menu header. We don’t need the cart, AI, or get started button up there. diff --git a/apps/gifting-concierge/src/app/confirm/[giftId]/page.tsx b/apps/gifting-concierge/src/app/confirm/[giftId]/page.tsx index cdbd874c..17778527 100644 --- a/apps/gifting-concierge/src/app/confirm/[giftId]/page.tsx +++ b/apps/gifting-concierge/src/app/confirm/[giftId]/page.tsx @@ -5,6 +5,8 @@ import { ConfirmGift } from "./confirm-gift"; import { ChevronRightIcon } from "lucide-react"; import ShippingForm from "./details/shipping-form"; import giftboxGIF from "~/assets/giftbox2.gif"; +import { cn } from "@theliaison/ui"; +import { buttonVariants } from "@theliaison/ui/button"; export default async function Confirm({ params: { giftId }, @@ -21,9 +23,17 @@ export default async function Confirm({ if (error) { return ( -
+

This gift does not exist anymore.

- Go back to the list of gifts + + Go back to the list of gifts +
); } @@ -31,15 +41,21 @@ export default async function Confirm({ return (
+ Giftbox

- Hey, someone special + Someone Special - wants to send you a gift. + Wants to Send You a Gift!

- The Liaison Gifting concierge manages the gift sending. + Enter Your Address Securely to Receive Your Gift! The Liaison will + handle the rest.

@@ -59,12 +75,15 @@ export default async function Confirm({
- Giftbox
); } + +/** + * Intructions: + * 1. Rest assured, your address will only be used to deliver your gift and will remain private. The sender will not know your address. + * 2. The gift sender wanted to keep this gift a surprise, so enjoy the anticipation. + * 3. Fast and Secure Delivery. Once you provide your address, we'll take care of the rest and deliver your gift promptly. + * CTA Button: Submit Address Securely + */