'use client'; import type { AppGalleryProps } from '@/types/component-props'; import AppCard from './AppCard'; export default function AppGallery({ apps, isLoading = false, onSelectApp, }: AppGalleryProps) { if (isLoading) { return (
Loading apps...
); } if (apps.length === 0) { return (

No apps generated yet

Record a voice note and say "create an app" to generate your first application

); } return (
{apps.map((app) => ( ))}
); }