website refactor
This commit is contained in:
11
apps/website/components/onboarding/OnboardingContainer.tsx
Normal file
11
apps/website/components/onboarding/OnboardingContainer.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
interface OnboardingContainerProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export function OnboardingContainer({ children }: OnboardingContainerProps) {
|
||||
return (
|
||||
<div className="max-w-3xl mx-auto px-4 py-10">
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user