"use client"; import { DataTableProvider, DataTableFilters, DateRangeFilter, ColumnFilterType, type FilterableColumn, } from "@calcom/features/data-table"; import { AverageEventDurationChart, BookingKPICards, BookingStatusLineChart, LeastBookedTeamMembersTable, MostBookedTeamMembersTable, PopularEventsTable, HighestNoShowHostTable, RecentFeedbackTable, HighestRatedMembersTable, LowestRatedMembersTable, } from "@calcom/features/insights/components"; import "@calcom/features/insights/components/tremor.css"; import { InsightsOrgTeamsProvider } from "@calcom/features/insights/context/InsightsOrgTeamsProvider"; import { Download } from "@calcom/features/insights/filters/Download"; import { OrgTeamsFilter } from "@calcom/features/insights/filters/OrgTeamsFilter"; import { useInsightsBookings } from "@calcom/features/insights/hooks/useInsightsBookings"; import { useInsightsOrgTeams } from "@calcom/features/insights/hooks/useInsightsOrgTeams"; import { useLocale } from "@calcom/lib/hooks/useLocale"; export default function InsightsPage() { return ( ); } const createdAtColumn: Extract = { id: "createdAt", title: "createdAt", type: ColumnFilterType.DATE_RANGE, }; function InsightsPageContent() { const { t } = useLocale(); const { table } = useInsightsBookings(); const { isAll, teamId, userId } = useInsightsOrgTeams(); return ( <>
{t("looking_for_more_insights")}{" "} {" "} {t("contact_support")}
); }