feat: add expert search, legal search and UI improvements

This commit is contained in:
Aktraiser 2024-12-30 13:34:26 +01:00
parent 2c5ca94b3c
commit 271199c527
53 changed files with 4595 additions and 708 deletions

View file

@ -1,7 +1,7 @@
'use client';
import { cn } from '@/lib/utils';
import { BookOpenText, Home, Search, SquarePen, Settings } from 'lucide-react';
import { BookOpenText, Home, Search, SquarePen, Settings, MessageSquare } from 'lucide-react';
import Link from 'next/link';
import { useSelectedLayoutSegments } from 'next/navigation';
import React, { useState, type ReactNode } from 'react';
@ -38,6 +38,12 @@ const Sidebar = ({ children }: { children: React.ReactNode }) => {
active: segments.includes('library'),
label: 'Library',
},
{
icon: MessageSquare,
href: '/chatroom',
active: segments.includes('chatroom'),
label: 'Messages',
},
];
return (