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
630 B
TypeScript
Raw Permalink Normal View History

import { cookies } from "next/headers"
import { ProfileDescriptionBottom } from "./ProfileDescriptionBottom"
import { ProfileInformation } from "./ProfileInfo"
import { ProfileList } from "./ProfileList"
import { ProfileLogo } from "./ProfileLogo"
2021-04-18 01:56:23 +02:00
export const Profile = (): JSX.Element => {
const cookiesStore = cookies()
2021-04-18 01:56:23 +02:00
return (
<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
)
}