2023-10-23 23:11:59 +02:00
|
|
|
import { cookies } from "next/headers"
|
2023-07-31 19:06:46 +02:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
import { ProfileDescriptionBottom } from "./ProfileDescriptionBottom"
|
|
|
|
import { ProfileInformation } from "./ProfileInfo"
|
|
|
|
import { ProfileList } from "./ProfileList"
|
|
|
|
import { ProfileLogo } from "./ProfileLogo"
|
2021-04-18 01:56:23 +02:00
|
|
|
|
2023-08-01 17:22:09 +02:00
|
|
|
export const Profile = (): JSX.Element => {
|
2023-07-31 19:06:46 +02:00
|
|
|
const cookiesStore = cookies()
|
|
|
|
|
2021-04-18 01:56:23 +02:00
|
|
|
return (
|
2023-10-23 23:11:59 +02:00
|
|
|
<div className="flex flex-col items-center justify-center px-10 pt-2 md:flex-row md:pt-10">
|
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 />
|
2023-07-31 19:06:46 +02:00
|
|
|
<ProfileList cookiesStore={cookiesStore.toString()} />
|
2021-05-08 19:52:04 +02:00
|
|
|
<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
|
|
|
)
|
|
|
|
}
|