TorbatYar/frontend/modules/loyalty/features/admin/integrations.tsx
Mortezakoohjani d579d0b142 feat(loyalty): add Loyalty Platform Frontend module
Add frontend/modules/loyalty with types, API client, design system, feature pages and thin App Router routes under app/loyalty/. BFF proxy at app/api/loyalty/. Include loyalty frontend docs.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-27 10:50:55 +03:30

22 lines
853 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use client";
import { PageHeader } from "@/components/ds";
import { LoyaltyBreadcrumbs } from "@/modules/loyalty/components/LoyaltyBreadcrumbs";
import { LoyaltyScopeNotice } from "@/modules/loyalty/components/LoyaltyScopeNotice";
export default function Page() {
return (
<div>
<LoyaltyBreadcrumbs items={[{ label: "یکپارچه‌سازی" }]} />
<PageHeader title="یکپارچه‌سازی" description="Registry یکپارچه‌سازی HTTP در Loyalty نیست." />
<LoyaltyScopeNotice
title="Integrations API موجود نیست"
description="Connectorهای vertical (Beauty/Hospitality) جدا از این پلتفرم هستند."
alternatives={[
{ label: "قابلیت‌ها", href: "/loyalty/engage/capabilities" }
]}
/>
</div>
);
}