import { Button } from '@/components/ui/button'; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from '@/components/ui/dialog'; import { cn } from '@/lib/utils'; import CoinIcon from '@/reusables/coin-icon'; import useLocalSettingsStore from '@/stores/localSettingsStore'; import { Menu } from 'lucide-react'; import { useState } from 'react'; const EditorHeader = ({ className = '', onNavClick = () => {}, isNavActive = false }) => { const { getSetting } = useLocalSettingsStore(); const [openCoinDialog, setOpenCoinDialog] = useState(false); return (

MEMEAIGEN

setOpenCoinDialog(open)}> {getSetting('genAlphaSlang') ? 'Bruh' : 'Feature coming soon'} {getSetting('genAlphaSlang') ? "No cap, soon you'll be able to get AI cooking memes that absolutely slay! But lowkey fam, we gotta focus on making these core features bussin' first." : "Soon you'll be able to prompt AI to generate memes! Let us focus on nailing the core features first."}
{/* Note: You can turn {getSetting('genAlphaSlang') ? 'off' : 'on'} gen alpha slang in Settings. */}
); }; export default EditorHeader;