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