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

22 lines
627 B
TypeScript
Raw Normal View History

import { cookies } from 'next/headers'
2021-04-18 01:56:23 +02:00
import { ProfileDescriptionBottom } from './ProfileDescriptionBottom'
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 = () => {
const cookiesStore = cookies()
2021-04-18 01:56:23 +02:00
return (
2021-12-04 15:52:51 +01:00
<div className='flex flex-col items-center justify-center px-10 pt-2 md:flex-row md:pt-10'>
<ProfileLogo />
2021-05-08 21:09:03 +02:00
<div>
<ProfileInformation />
<ProfileList cookiesStore={cookiesStore.toString()} />
<ProfileDescriptionBottom />
2021-04-18 01:56:23 +02:00
</div>
</div>
2021-04-18 01:56:23 +02:00
)
}