2023-01-29 16:44:02 +01:00
|
|
|
export const WelcomeWrapper = ({ children }) => (
|
2023-01-14 22:40:07 +01:00
|
|
|
<section className="m-0 p-0 w-full">
|
2023-05-05 19:56:51 +02:00
|
|
|
<div className="flex flex-col items-center justify-start min-h-screen mt-4 lg:mt-32 max-w-lg m-auto">
|
2023-01-14 22:40:07 +01:00
|
|
|
<div className="w-full text-left">{children}</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
)
|