// Kafana — phone screen mockups (capture sheet, passport card, library)
// Capture sheet — the hero phone. Uses the real iOS screenshot as the source of truth.
function CaptureSheet({ dark = false }) {
return (
);
}
// Legacy capture sheet (CSS-rendered) — kept for reference but unused.
function _CaptureSheetLegacy({ dark = false }) {
const cardBg = dark ? 'var(--d-card)' : 'var(--cream)';
const textColor = dark ? 'var(--d-text)' : 'var(--ink)';
const smoke = dark ? 'var(--d-smoke)' : 'var(--smoke)';
const border = dark ? 'var(--d-whisper)' : 'var(--whisper)';
return (
);
}
// Legacy passport (CSS-rendered) — kept for reference but unused.
function _PassportCardLegacy({ dark = false, scale = 1 }) {
const bg = dark ? 'var(--d-card)' : 'var(--cream)';
const text = dark ? 'var(--d-text)' : 'var(--ink)';
const smoke = dark ? 'var(--d-smoke)' : 'var(--smoke)';
const border = dark ? 'var(--d-whisper)' : 'var(--whisper)';
return (