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
@@ -0,0 +1,20 @@
import { cn } from "@/lib/utils";
import type { ReactNode } from "react";
type PropsType = {
title: string;
children: ReactNode;
className?: string;
};
export function ShowcaseSection({ title, children, className }: PropsType) {
return (
<div className="rounded-[10px] bg-white shadow-1 dark:bg-gray-dark dark:shadow-card">
<h2 className="border-b border-stroke px-4 py-4 font-medium text-dark dark:border-dark-3 dark:text-white sm:px-6 xl:px-7.5">
{title}
</h2>
<div className={cn("p-4 sm:p-6 xl:p-10", className)}>{children}</div>
</div>
);
}