vchikalkin 106fdc0da5 refactor(profile): simplify profile page structure and enhance loading states
- Removed unnecessary data fetching and hydration logic from the main profile page.
- Updated the rendering of components to improve clarity and performance.
- Enhanced loading states in various profile components for better user experience.
- Refactored service list handling to utilize telegramId instead of masterId for consistency.
2025-09-18 14:02:10 +03:00

14 lines
355 B
TypeScript

import { Container } from '@/components/layout';
import { LinksCard, PersonCard, ProfileDataCard, SubscriptionInfoBar } from '@/components/profile';
export default function ProfilePage() {
return (
<Container className="px-0">
<PersonCard />
<SubscriptionInfoBar />
<ProfileDataCard />
<LinksCard />
</Container>
);
}