برای ورود، نام کاربری و رمز عبور خود را وارد کنید.
diff --git a/components/Logo.tsx b/components/Logo.tsx
new file mode 100644
index 0000000..0130921
--- /dev/null
+++ b/components/Logo.tsx
@@ -0,0 +1,19 @@
+import type { SVGProps } from "react";
+
+// Brand lotus mark for «آرام جان». Inline SVG (static-export friendly); uses
+// `currentColor` so it inherits text color — e.g. text-primary on light
+// surfaces, text-white on the brand background. The viewBox is cropped to the
+// artwork (the original export had a large drop-shadow padding we don't need).
+export function Logo(props: SVGProps) {
+ return (
+
+ );
+}
diff --git a/components/Sidebar.tsx b/components/Sidebar.tsx
index 0d54dee..a79f00a 100644
--- a/components/Sidebar.tsx
+++ b/components/Sidebar.tsx
@@ -4,6 +4,7 @@ import Link from "next/link";
import { usePathname } from "next/navigation";
import { NAV } from "@/lib/nav";
import { cn } from "@/lib/utils";
+import { Logo } from "./Logo";
export function Sidebar({ onNavigate }: { onNavigate?: () => void }) {
const pathname = usePathname();
@@ -11,10 +12,13 @@ export function Sidebar({ onNavigate }: { onNavigate?: () => void }) {
return (