2021-04-18 01:56:23 +02:00
|
|
|
import { ProfileDescriptionBottom } from './ProfileDescriptionBottom'
|
2021-08-12 01:19:11 +02:00
|
|
|
import { ProfileInformation } from './ProfileInfo'
|
2021-04-18 01:56:23 +02:00
|
|
|
import { ProfileList } from './ProfileList'
|
|
|
|
import { ProfileLogo } from './ProfileLogo'
|
|
|
|
|
|
|
|
export const Profile: React.FC = () => {
|
|
|
|
return (
|
2021-08-12 01:19:11 +02:00
|
|
|
<div className='flex flex-col justify-center items-center px-10 pt-2 md:pt-10 md:flex-row'>
|
2021-05-08 19:52:04 +02:00
|
|
|
<ProfileLogo />
|
2021-05-08 21:09:03 +02:00
|
|
|
<div>
|
2021-08-12 01:19:11 +02:00
|
|
|
<ProfileInformation />
|
2021-05-08 19:52:04 +02:00
|
|
|
<ProfileList />
|
|
|
|
<ProfileDescriptionBottom />
|
2021-04-18 01:56:23 +02:00
|
|
|
</div>
|
2021-05-08 19:52:04 +02:00
|
|
|
</div>
|
2021-04-18 01:56:23 +02:00
|
|
|
)
|
|
|
|
}
|