diff --git a/frontend/src/components/layout/navbar.tsx b/frontend/src/components/layout/navbar.tsx index d18f5afe..ca55cb26 100644 --- a/frontend/src/components/layout/navbar.tsx +++ b/frontend/src/components/layout/navbar.tsx @@ -1,8 +1,7 @@ import { Link, useLocation } from 'react-router-dom'; import { Button } from '@/components/ui/button'; -import { FolderOpen, Settings, HelpCircle, Server } from 'lucide-react'; +import { FolderOpen, Settings, BookOpen, Server } from 'lucide-react'; import { Logo } from '@/components/logo'; -import { SupportDialog } from '@/components/support-dialog'; export function Navbar() { const location = useLocation(); @@ -53,12 +52,16 @@ export function Navbar() {
- - - +
diff --git a/frontend/src/components/support-dialog.tsx b/frontend/src/components/support-dialog.tsx deleted file mode 100644 index 8676477c..00000000 --- a/frontend/src/components/support-dialog.tsx +++ /dev/null @@ -1,52 +0,0 @@ -import { useState, ReactNode } from 'react'; -import { HelpCircle, Mail } from 'lucide-react'; -import { Button } from '@/components/ui/button'; -import { - Dialog, - DialogContent, - DialogDescription, - DialogHeader, - DialogTitle, -} from '@/components/ui/dialog'; - -interface SupportDialogProps { - children: ReactNode; -} - -export function SupportDialog({ children }: SupportDialogProps) { - const [isOpen, setIsOpen] = useState(false); - - const handleEmailClick = () => { - window.location.href = 'mailto:louis@bloop.ai'; - }; - - return ( - <> -
setIsOpen(true)}>{children}
- - - - - - Support - - - Have questions or need help? I'm here to assist you! - - -
-

- Email me at{' '} - louis@bloop.ai with - any questions and I'll respond ASAP. -

- -
-
-
- - ); -}