2026-02-03 07:42:20 +00:00
|
|
|
import { AppLayout } from '@/components/layout/AppLayout';
|
2026-02-03 21:01:41 +05:30
|
|
|
import { OrganizationProfileCard } from '@/features/settings/components/OrganizationProfileCard';
|
|
|
|
|
import { PayoutBankingCard } from '@/features/settings/components/PayoutBankingCard';
|
|
|
|
|
import { TeamSecurityCard } from '@/features/settings/components/TeamSecurityCard';
|
|
|
|
|
import { DeveloperSection } from '@/features/settings/components/DeveloperSection';
|
2026-02-03 21:04:57 +05:30
|
|
|
import { PaymentGatewayCard } from '@/features/settings/components/PaymentGatewayCard';
|
2026-02-03 07:42:20 +00:00
|
|
|
|
|
|
|
|
export default function Settings() {
|
|
|
|
|
return (
|
2026-02-03 21:01:41 +05:30
|
|
|
<AppLayout
|
|
|
|
|
title="Settings"
|
|
|
|
|
description="Manage platform configuration and critical operations."
|
2026-02-03 07:42:20 +00:00
|
|
|
>
|
2026-02-03 21:01:41 +05:30
|
|
|
<div className="space-y-6 max-w-[1200px]">
|
2026-02-03 21:04:57 +05:30
|
|
|
{/* Top Grid: Identity & Banking */}
|
2026-02-03 21:01:41 +05:30
|
|
|
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6 h-auto lg:h-[400px]">
|
|
|
|
|
<OrganizationProfileCard />
|
|
|
|
|
<PayoutBankingCard />
|
|
|
|
|
</div>
|
2026-02-03 07:42:20 +00:00
|
|
|
|
2026-02-03 21:04:57 +05:30
|
|
|
{/* Middle Grid: Gateways & Security */}
|
|
|
|
|
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6 h-auto">
|
|
|
|
|
<PaymentGatewayCard />
|
|
|
|
|
<TeamSecurityCard />
|
2026-02-03 07:42:20 +00:00
|
|
|
</div>
|
2026-02-03 21:01:41 +05:30
|
|
|
|
|
|
|
|
{/* Collapsible Developer Section */}
|
|
|
|
|
<DeveloperSection />
|
2026-02-03 07:42:20 +00:00
|
|
|
</div>
|
|
|
|
|
</AppLayout>
|
|
|
|
|
);
|
|
|
|
|
}
|