import { useWorkspaceStore } from "@/stores"; import Icon from "./Icon"; const DemoBanner: React.FC = () => { const workspaceStore = useWorkspaceStore(); const shouldShow = workspaceStore.profile.mode === "demo"; if (!shouldShow) return null; return (
✨🔗 Slash - An open source, self-hosted links shortener and sharing platform Install
); }; export default DemoBanner;