"use client"; import { PLATFORM_APPS } from "@/lib/apps-catalog"; import { AppTile, SectionTitle } from "@/components/ui"; export function AppStoreGrid() { const availableApps = PLATFORM_APPS.filter((app) => app.status === "available"); const comingSoonApps = PLATFORM_APPS.filter((app) => app.status === "coming_soon"); return (
{availableApps.map((app) => ( ))}
{comingSoonApps.map((app) => ( ))}
); }