import type { ReactNode } from "react"; import { Logo } from "@calcom/ui/components/logo"; type OnboardingLayoutProps = { userEmail: string; currentStep: 1 | 2 | 3 | 4; children: ReactNode; }; export const OnboardingLayout = ({ userEmail, currentStep, children }: OnboardingLayoutProps) => { return (
{/* Header */}
{/* Progress dots - centered */}
{[1, 2, 3, 4].map((step) => (
))}

{userEmail}

{/* Main content */}
{children}
); };