유대선
프로젝트로
·업데이트·2

Shipped the public landing page — mascot art, bilingual, a real-capture carousel, and a demo video

The DalkkakAI landing page went live at ddalkkak.daeseon.ai: the sloth-robot mascot art used as a hero banner + roomy explainer bands (never faked as screenshots), an English-default page with a one-click Korean toggle, a data-driven screenshot carousel that adapts to however many real captures exist, and a ~1.5-min demo video (poster + click-to-play). Deployed from the local folder via the Vercel CLI onto an existing custom domain.

What shipped

A single self-contained static page (landing/index.html, no build step), now live at ddalkkak.daeseon.ai:

One gotcha worth remembering: Safari obeys EXIF orientation, Chrome (in my pipeline) didn't

One illustration (focusup) rendered rotated 90° in Safari but upright in Chrome. Cause: a stray EXIF orientation tag — sips reported the pixels as landscape, but mdls/ImageIO (Safari's engine) read it as portrait and rotated it. The fix was to bake the rotation into the pixels and re-encode (verified with QuickLook as the Safari-engine oracle). Always check mdls -name kMDItemOrientation X.jpg is 0 after converting images — a renderer that respects EXIF will rotate what another renderer leaves alone. (Documented in landing/README.md.)