Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 1x 9x | import { Card, CardContent } from '@/components/card';
import { ProfileSection } from './components/profile-section';
import { PasswordSection } from './components/password-section';
import { BillingSection } from './components/billing-section';
import { Heading } from '@/components/heading';
import { SETTING_PAGE } from '@/constants/setting';
export const SettingPage = () => {
return (
<div className="h-full p-[85px] overflow-y-auto">
{/* Page Header */}
<div className="mb-6">
<Heading as="h1" size="h3">
{SETTING_PAGE.TITLE}
</Heading>
</div>
{/* Settings Sections */}
<Card className="">
<CardContent className="p-0">
<div className="space-y-0">
<ProfileSection />
<PasswordSection />
<BillingSection />
</div>
</CardContent>
</Card>
</div>
);
};
export default SettingPage;
|