"use client"; import type { ComponentProps } from "react"; import React from "react"; import Shell from "@calcom/features/shell/Shell"; export default function MainLayout({ children, ...rest }: { children: React.ReactNode } & ComponentProps) { return ( {children} ); } export const getLayout = (page: React.ReactElement) => {page};