Two of the most practically important sections in any digital invitation are the RSVP confirmation and the gift registry. Instead of building a backend form or database, the platform keeps both features lightweight and instantly actionable: RSVP is a single tap that opens WhatsApp with a pre-filled message, and gift options surface direct links to major Mexican retailers alongside bank transfer details with clipboard copy.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/gus-16710/invitations/llms.txt
Use this file to discover all available pages before exploring further.
RSVP — Confirm Section
TheConfirm component provides a warm, animated invitation for guests to confirm their attendance. Confirmation is handled entirely via WhatsApp — there is no form, no database, and no email to manage.
WhatsApp Deep Link Pattern
The deep link format is:[phone]— the host’s phone number in international format, without+or spaces (e.g.,5215511422546for a Mexican number).[text]— an optional pre-filled message that appears in the WhatsApp compose box when the guest taps the link.
wa.link, which are pre-configured redirects that bundle the phone number and message into a single short URL.
Button onClick Pattern
window.open(..., "_blank") so the guest leaves the invitation in a background tab and can return after sending the message. The tel: URI scheme opens the device’s native dialer on both iOS and Android.
The phone number and WhatsApp message are hardcoded per invitation during the customisation process. There is no dynamic configuration — the developer edits the
href / onClick value directly when setting up a new invitation.Gift Registry — Gifts Section
Mexican events traditionally include a mesa de regalos (gift registry) that guests can browse before attending. TheGifts component surfaces multiple gift options in a single slide, covering the most popular Mexican retailers and a direct bank transfer option.
Supported Retailers
Amazon
Links to
amazon.com.mx/registries — Mexico’s Amazon gift registry portal.Liverpool
Links to
mesaderegalos.liverpool.com.mx — Liverpool’s dedicated registry service.Sears
Links to
sears.com.mx/Mesa-de-Regalos — Sears Mexico gift registry.Depósito Bancario
Opens a modal with the host’s bank account number and CLABE, each with a one-tap clipboard copy button.
Bank Transfer Modal with Clipboard Copy
Tapping the Depósito option opens a NextUIModal that displays the beneficiary name, bank name, account number, and CLABE. Each numeric field has a Copiar button that writes the value to the clipboard and shows a brief Popover confirmation.
Opening the Gifts Modal
The parentGifts component uses NextUI’s useDisclosure hook to manage the modal’s open/close state:
Google Maps Integration
TheCeremony and Reception sections provide a button or link that opens Google Maps so guests can navigate directly to the venue. The pattern is a button with an onClick that calls window.open with a Google Maps search URL:
q parameter accepts a free-text address or a place name. For precise locations, a q=lat,lng pair can be used instead (e.g., ?q=19.4326,-99.1332).
All contact and financial information — phone numbers, WhatsApp links, bank account numbers, and CLABE numbers — is hardcoded directly into each invitation’s component files during the customisation process. There is no admin panel or CMS. When setting up a new invitation, the developer replaces the placeholder values in
Confirm.tsx and Gifts.tsx with the client’s real details.