mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
22 lines
630 B
TypeScript
22 lines
630 B
TypeScript
import { cookies } from 'next/headers'
|
|
|
|
import { ProfileDescriptionBottom } from './ProfileDescriptionBottom'
|
|
import { ProfileInformation } from './ProfileInfo'
|
|
import { ProfileList } from './ProfileList'
|
|
import { ProfileLogo } from './ProfileLogo'
|
|
|
|
export const Profile = (): JSX.Element => {
|
|
const cookiesStore = cookies()
|
|
|
|
return (
|
|
<div className='flex flex-col items-center justify-center px-10 pt-2 md:flex-row md:pt-10'>
|
|
<ProfileLogo />
|
|
<div>
|
|
<ProfileInformation />
|
|
<ProfileList cookiesStore={cookiesStore.toString()} />
|
|
<ProfileDescriptionBottom />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|