Initial commit for new panel

This commit is contained in:
AmirReza Jamali
2025-09-09 11:20:26 +03:30
commit 1d4ccb3575
343 changed files with 20031 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import Image from "next/image";
export function Logo() {
return (
<Image
src="/images/main-logo.svg"
width={174}
height={32}
alt="NextAdmin logo"
role="presentation"
quality={100}
className="dark:invert"
/>
);
}