feat: enhance MessageBubble with custom Markdown rendering, update Navbar layout, and integrate Search component in App

This commit is contained in:
ecwu
2025-01-26 21:15:34 +00:00
parent 233397ba46
commit 55e8186479
5 changed files with 75 additions and 102 deletions

View File

@@ -89,6 +89,8 @@ import {
import { useToast } from "@/hooks/use-toast";
import { ModeToggle } from "@/components/ModeToggle";
import Search from "@/components/Search";
import Navbar from "@/components/navbar";
export function App() {
@@ -352,7 +354,10 @@ export function App() {
</SidebarGroup>
</SidebarContent>
<SidebarFooter>
<ModeToggle />
<div className="flex items-start gap-2">
<ModeToggle />
<Search />
</div>
<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant="destructive">{Tr("DEL")}</Button>