feedback list 기능추가. 상단바 추가. 테마 적용 안됨.

This commit is contained in:
2025-07-31 17:22:13 +09:00
parent b4e6a94fda
commit 3ccb0c8f8a
90 changed files with 1766 additions and 278 deletions

View File

@@ -0,0 +1,11 @@
import { CircleUser } from "lucide-react";
import { Button } from "./ui/button";
export function UserProfileBox() {
return (
<Button variant="ghost" size="icon">
<CircleUser />
<span className="sr-only"> </span>
</Button>
);
}