"use client"; // ============================================================================ // Demo Banner Component // ============================================================================ import Link from "next/link"; import { Sparkles, ArrowRight, X } from "lucide-react"; import { useState } from "react"; import { Button } from "@/components/ui/button"; import { BOT_USERNAME } from "@/lib/utils/constants"; interface DemoBannerProps { className?: string; } export const DemoBanner: React.FC = ({ className }) => { const [isVisible, setIsVisible] = useState(true); if (!isVisible) return null; return (
Вы просматриваете демо-версию платформы Создать свой кабинет и опробовать всю мощь платформы!
); };