mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
18 lines
545 B
TypeScript
18 lines
545 B
TypeScript
import { ProfileDescriptionBottom } from './ProfileDescriptionBottom'
|
|
import { ProfileInfo } from './ProfileInfo'
|
|
import { ProfileList } from './ProfileList'
|
|
import { ProfileLogo } from './ProfileLogo'
|
|
|
|
export const Profile: React.FC = () => {
|
|
return (
|
|
<div className='flex flex-col justify-center items-center px-10 pt-2 pb-6 md:pt-10 xl:pt-0 md:flex-row'>
|
|
<ProfileLogo />
|
|
<div className='col-sm-24 col-md-14'>
|
|
<ProfileInfo />
|
|
<ProfileList />
|
|
<ProfileDescriptionBottom />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|