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>
22 lines
866 B
TypeScript
22 lines
866 B
TypeScript
"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="Partner programs مالکیت جداگانه دارد." />
|
|
<LoyaltyScopeNotice
|
|
title="Partner API در Loyalty نیست"
|
|
description="برنامههای وفاداری داخلی را از بخش برنامهها مدیریت کنید."
|
|
alternatives={[
|
|
{ label: "برنامهها", href: "/loyalty/engage/programs" }
|
|
]}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|