"use client"; import { AverageEventDurationChart, BookingKPICards, BookingStatusLineChart, LeastBookedTeamMembersTable, MostBookedTeamMembersTable, PopularEventsTable, HighestNoShowHostTable, RecentFeedbackTable, HighestRatedMembersTable, LowestRatedMembersTable, } from "@calcom/features/insights/components"; import { FiltersProvider } from "@calcom/features/insights/context/FiltersProvider"; import { Filters } from "@calcom/features/insights/filters"; 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 { getServerSideProps } from "@lib/insights/getServerSideProps"; import PageWrapper from "@components/PageWrapper"; export default function InsightsPage() { 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 ? ( <> ) : (
{t("looking_for_more_insights")}{" "} {" "} {t("contact_support")}
)} ); } InsightsPage.PageWrapper = PageWrapper; export { getServerSideProps };