import { Greeting } from '@/app/(private)/portfolio/(dashboard)/_components/greeting'; import { Distribution } from '@/app/(private)/portfolio/(dashboard)/_components/my-assets/distribution/distribution'; import { TransactionsHistory } from '@/components/blocks/transactions-history/transactions-history'; import { PageHeader } from '@/components/layout/page-header'; import { getAuthenticatedUser } from '@/lib/auth/auth'; import { LatestEvents } from './_components/latest-events/latest-events'; import { MyAssetsHeader } from './_components/my-assets-header/my-assets-header'; import { MyAssets } from './_components/my-assets/(table)/table'; export default async function PortfolioPage() { const user = await getAuthenticatedUser(); return ( <>
); }