"use client"; import { Lock } from "lucide-react"; import Link from "next/link"; import type { FC } from "react"; import { Button } from "@/components/ui/button"; import { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, } from "@/components/ui/empty"; interface GatedTabProps { title: string; description: string; } const GatedTab: FC = ({ title, description }) => ( {title} {description} ); export const ReportsGatedPlaceholder: FC = () => ( ); export const EditorGatedPlaceholder: FC = () => ( ); export const HitlGatedPlaceholder: FC = () => ( );