TorbatYar/frontend/components/AppStoreGrid.tsx
Mortezakoohjani 800b0ba2c5 Deploy TorbatYar for torbatyar.ir with nginx multi-tenant routing.
Wire production domain, CORS for tenant subdomains, celery volume mounts, and nginx reverse proxy configs for apex, API, identity, auth, and wildcard tenants.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-21 21:43:33 +03:30

21 lines
598 B
TypeScript

"use client";
import { PLATFORM_APPS } from "@/lib/apps-catalog";
import { AppTile, SectionTitle } from "@/components/ui";
export function AppStoreGrid() {
return (
<section>
<SectionTitle
title="اپلیکیشن‌ها"
subtitle="همه سرویس‌های پلتفرم در یک جا — مثل App Store"
/>
<div className="grid grid-cols-3 gap-2 sm:grid-cols-4 sm:gap-4 md:grid-cols-5 lg:grid-cols-6">
{PLATFORM_APPS.map((app) => (
<AppTile key={app.id} app={app} />
))}
</div>
</section>
);
}