diff --git a/ui/components/EmptyChat.tsx b/ui/components/EmptyChat.tsx index 2aade48..e627a0a 100644 --- a/ui/components/EmptyChat.tsx +++ b/ui/components/EmptyChat.tsx @@ -1,5 +1,5 @@ import EmptyChatMessageInput from './EmptyChatMessageInput'; -import ThemeSwitcher from './theme/Switcher'; +import SettingsEntry from './SettingsEntry'; const EmptyChat = ({ sendMessage, @@ -12,7 +12,7 @@ const EmptyChat = ({ }) => { return (
- +

diff --git a/ui/components/SettingsEntry.tsx b/ui/components/SettingsEntry.tsx new file mode 100644 index 0000000..4b8b1e2 --- /dev/null +++ b/ui/components/SettingsEntry.tsx @@ -0,0 +1,23 @@ +import { useState } from 'react'; +import { Settings } from 'lucide-react'; +import { cn } from '@/lib/utils'; +import SettingsDialog from './SettingsDialog'; + +interface InputProps extends React.InputHTMLAttributes {} + +const SettingsEntry = ({ className }: InputProps) => { + const [isSettingsOpen, setIsSettingsOpen] = useState(false); + + return ( + <> + setIsSettingsOpen(!isSettingsOpen)} + className={cn('cursor-pointer', className)} + /> + + + + ); +}; + +export default SettingsEntry; diff --git a/ui/components/Sidebar.tsx b/ui/components/Sidebar.tsx index 7b3e971..76790ac 100644 --- a/ui/components/Sidebar.tsx +++ b/ui/components/Sidebar.tsx @@ -1,13 +1,12 @@ 'use client'; import { cn } from '@/lib/utils'; -import { BookOpenText, Home, Search, SquarePen, Settings } from 'lucide-react'; +import { BookOpenText, Home, Search, SquarePen } from 'lucide-react'; import Link from 'next/link'; import { useSelectedLayoutSegments } from 'next/navigation'; import React, { useState, type ReactNode } from 'react'; import Layout from './Layout'; -import SettingsDialog from './SettingsDialog'; -import ThemeSwitcher from './theme/Switcher'; +import SettingsEntry from './SettingsEntry'; const VerticalIconContainer = ({ children }: { children: ReactNode }) => { return ( @@ -68,15 +67,7 @@ const Sidebar = ({ children }: { children: React.ReactNode }) => { ))} - setIsSettingsOpen(!isSettingsOpen)} - className="cursor-pointer" - /> - - +