diff --git a/apps/web/app/(use-page-wrapper)/insights/layout.tsx b/apps/web/app/(use-page-wrapper)/insights/layout.tsx index df6bd32be650d7..7aee590dde914e 100644 --- a/apps/web/app/(use-page-wrapper)/insights/layout.tsx +++ b/apps/web/app/(use-page-wrapper)/insights/layout.tsx @@ -1,65 +1,15 @@ -"use client"; - -import { useSession } from "next-auth/react"; +import { getTranslate } from "app/_utils"; 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 { Button, ButtonGroup } from "@calcom/ui"; -import { Icon } from "@calcom/ui"; - -export default function InsightsLayout({ children }: { children: React.ReactNode }) { - const { t } = useLocale(); - const session = useSession(); - 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"), - }, - ]; +import UpgradeTipWrapper from "./UpgradeTipWrapper"; +export default async function InsightsLayout({ children }: { children: React.ReactNode }) { + const t = await getTranslate(); return (
- - - - - - -
- }> - {!session.data?.user ? null : children} - + + {children} );