Joyful Birthday Wishes,
Built Together.

Create interactive digital cards that bloom with memories. Invite friends to collaborate on the ultimate surprise plan, powered by the permanent magic of the blockchain.

🎈
🎁

Making magic is easy

Three steps to the best birthday gift they've ever received.

Upload Memories

Drag and drop your favorite photos, videos, and voice notes. They're safely stored forever on Walrus.

Decorate & Animate

Choose from hand-drawn themes, interactive candles, and background tunes that fit their personality.

Collaborate Together

The Surprise Planner lets friends suggest gift ideas and favorite memories to build a collective masterpiece.

TECH SHOWCASE

Built for the
Next Generation.

W

Walrus Storage

All your photos, high-res videos, and personalized audio are stored on Walrus. It's decentralized, permanent, and lightning-fast. No lost memories, ever.

S

Sui Network

The collaborative "Surprise Party Planner" is built on Sui's Object Model. Every friend's contribution is an on-chain event, enabling seamless real-time co-creation.

// Sample Walrus Storage Hook
const storeOnWalrus = async (data) => {
  const response = await fetch(WALRUS_URL, {
    method: 'PUT',
    body: data
  });
  return response.json();
};

// Sui Collaborative Object
public entry fun add_idea(
  plan: &mut SurprisePlan, 
  idea: String,
  ctx: &mut TxContext
) {
  let contributor = tx_context::sender(ctx);
  plan.ideas.push_back(Idea { contributor, idea });
}