File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ function DesktopNavigation(props) {
146146 < NavItem href = "noterepbot" > AI Chat Bot</ NavItem >
147147 < NavItem href = "chat" > Live Chat</ NavItem >
148148 < NavItem href = "communilink" > CommuniLink</ NavItem >
149- < NavItem href = "links" > Other Links</ NavItem >
149+ < NavItem href = "links" > Links</ NavItem >
150150 < NavItem_External href = "https://myselfshravan.github.io" >
151151 Developer
152152 </ NavItem_External >
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ function ChatProvider({ children }) {
9797function ChatRoomList ( { rooms, activePageUsers } ) {
9898 const router = useRouter ( )
9999 return (
100- < div className = "w-full border-b border-gray-300 bg-gradient-to-r from-blue-50 to-indigo-50 p-3 dark:border-gray-700 dark:from-blue-900 dark:to-indigo-900" >
100+ < div className = "w-full border-b border-gray-300 bg-gradient-to-r from-blue-50 to-indigo-50 p-5 dark:border-gray-700 dark:from-blue-900 dark:to-indigo-900" >
101101 < div className = "mb-2 flex items-center justify-between" >
102102 < h2 className = "text-lg font-bold text-gray-900 dark:text-white" >
103103 NoteRep Chat Rooms
@@ -188,7 +188,7 @@ export default function Chat() {
188188 < main className = "flex min-h-screen flex-col bg-indigo-50 dark:bg-gray-900" >
189189 < CompactHeader />
190190 < section className = "flex h-screen flex-col py-3 sm:py-10" >
191- < div className = "container mx-auto flex flex-1 flex-col p-4" >
191+ < div className = "container mx-auto flex flex-1 flex-col p-4 max-w-5xl " >
192192 < h1 className = "mb-6 text-center text-3xl font-bold text-gray-900 dark:text-white" >
193193 NoteRep Live Chat
194194 </ h1 >
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ export default function ChatRoom() {
309309 < main className = "flex min-h-screen flex-col bg-indigo-50 dark:bg-gray-900" >
310310 < CompactHeader />
311311 < section className = "flex h-screen flex-col py-3 sm:py-10" >
312- < div className = "container mx-auto flex flex-1 flex-col p-4" >
312+ < div className = "container mx-auto flex max-w-5xl flex-1 flex-col p-4" >
313313 < h1 className = "mb-6 text-center text-3xl font-bold text-gray-900 dark:text-white" >
314314 NoteRep Live Chat
315315 </ h1 >
@@ -323,7 +323,7 @@ export default function ChatRoom() {
323323 sendMessage,
324324 } ) => (
325325 < div className = "flex h-[85vh] flex-col overflow-hidden rounded-2xl bg-white shadow-2xl dark:bg-gray-800" >
326- < div className = "w-full border-b border-gray-300 bg-gradient-to-r from-blue-50 to-indigo-50 p-3 dark:border-gray-700 dark:from-blue-900 dark:to-indigo-900" >
326+ < div className = "w-full border-b border-gray-300 bg-gradient-to-r from-blue-50 to-indigo-50 p-5 dark:border-gray-700 dark:from-blue-900 dark:to-indigo-900" >
327327 < div className = "mb-2 flex items-center justify-between" >
328328 < h2 className = "text-lg font-bold text-gray-900 dark:text-white" >
329329 { currentRoom ? currentRoom . name : 'Loading...' }
@@ -337,7 +337,7 @@ export default function ChatRoom() {
337337 </ p >
338338 < button
339339 onClick = { ( ) => router . push ( '/chat' ) }
340- className = "text-xs font-medium text-blue-600 hover:text -blue-800 dark:text -blue-400 dark:hover:text -blue-300 "
340+ className = "rounded-md bg-blue-600 px-3 py-1.5 text-xs font-medium text-white transition-colors hover:bg -blue-700 dark:bg -blue-500 dark:hover:bg -blue-400 "
341341 >
342342 Back to Rooms
343343 </ button >
You can’t perform that action at this time.
0 commit comments