diff --git a/ui/src/components/Sidebar.tsx b/ui/src/components/Sidebar.tsx index 324b6097..a5b3e2d6 100644 --- a/ui/src/components/Sidebar.tsx +++ b/ui/src/components/Sidebar.tsx @@ -1,5 +1,6 @@ import Link from 'next/link'; -import { Home, Settings, BrainCircuit, Images, Plus } from 'lucide-react'; +import { Home, Settings, BrainCircuit, Images, Plus} from 'lucide-react'; +import { FaXTwitter, FaDiscord, FaYoutube } from "react-icons/fa6"; const Sidebar = () => { const navigation = [ @@ -10,13 +11,16 @@ const Sidebar = () => { { name: 'Settings', href: '/settings', icon: Settings }, ]; + const socialsBoxClass = 'flex flex-col items-center justify-center p-1 hover:bg-gray-800 rounded-lg transition-colors'; + const socialIconClass = 'w-5 h-5 text-gray-400 hover:text-white'; + return (

Ostris AI Toolkit Ostris - AI-Toolkit + AI-Toolkit

- +
@@ -47,6 +56,39 @@ const Sidebar = () => {
Support AI-Toolkit
+ + {/* Social links grid */} +
+
+ + + {/* Discord */} + + + + {/* YouTube */} + + + + {/* X */} + +
+
); };