// Food Court Master — REAL screenshot frames (no fake mockups)
// All images live in /assets/fcm/ — these are the actual product screenshots.
const FCM_SHOT_BASE = '../assets/fcm/';
// Browser-style frame for backoffice screenshots (desktop UI)
function ScreenshotFrame({ src, alt, label, ratio = '16/10' }) {
return (
{/* Window chrome */}
backoffice.alohasmartsystem.com
{label && (
{label}
)}
);
}
// Tablet/POS-style frame for kiosk + customer order screen
function TabletFrame({ src, alt, label, mode = 'portrait' }) {
const ratio = mode === 'portrait' ? '3/4' : '4/3';
return (
{label && (
{label}
)}
);
}
// TV-style frame for landscape Central Board
function TVFrame({ src, alt, label }) {
return (