added orai

This commit is contained in:
szabomarton
2025-03-11 12:57:30 +01:00
parent 13254e5623
commit fe52ae8683
2177 changed files with 289592 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
export default function Termek(params) {
const { id, megnevezes, ar } = params.element;
return (
<div className="flex justify-center my-5">
<div
className="block w-96 max-w-[18rem] rounded-lg border border-primary bg-white shadow-secondary-1 dark:bg-surface-dark">
<div
className="border-b-2 border-neutral-100 px-6 py-3 text-surface dark:border-white/10 dark:text-white">
</div>
<div className="p-6">
<h5 className="mb-2 text-xl font-medium leading-tight text-primary">
{megnevezes}
</h5>
<p className="text-base text-primary ">
{id}
</p>
<p className="text-base text-primary ">
{ar}
</p>
<p className="text-base text-primary ">
text
</p>
</div>
<button className="btn btn-primary">Törlés</button>
</div>
</div>
)
}