1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/Profile/index.tsx

18 lines
508 B
TypeScript
Raw Normal View History

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