"use client"; import { Lock } from "lucide-react"; import Link from "next/link"; import type { FC } from "react"; import { Button } from "@/components/ui/button"; 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 = () => ( );