- 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.
14 lines
355 B
TypeScript
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>
|
|
);
|
|
}
|