"use client"; import Shell from "@calcom/features/shell/Shell"; import { UpgradeTip } from "@calcom/features/tips"; import { WEBAPP_URL } from "@calcom/lib/constants"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { trpc } from "@calcom/trpc"; import { Button, ButtonGroup } from "@calcom/ui"; import { Icon } from "@calcom/ui"; import type { getServerSideProps } from "@lib/insights/getServerSideProps"; import type { inferSSRProps } from "@lib/types/inferSSRProps"; export type PageProps = inferSSRProps; export default function InsightsLayout({ children }: { children: React.ReactNode }) { const { t } = useLocale(); const { data: user } = trpc.viewer.me.useQuery(); const features = [ { icon: , title: t("view_bookings_across"), description: t("view_bookings_across_description"), }, { icon: , title: t("identify_booking_trends"), description: t("identify_booking_trends_description"), }, { icon: , title: t("spot_popular_event_types"), description: t("spot_popular_event_types_description"), }, ]; return (
}> {!user ? null : children} ); }