|
|
|
@ -16,10 +16,13 @@ const Table = ({ specifications }) => { |
|
|
|
|
<ul className="w-full"> |
|
|
|
|
{Object.keys(specifications).map((specification, index) => ( |
|
|
|
|
<li className="flex my-3"> |
|
|
|
|
<div className="bg-white rounded p-3 ml-2" style={{ flex: 2 }}> |
|
|
|
|
<div |
|
|
|
|
className="bg-white rounded p-3 ml-2 text-blue-600 text-sm" |
|
|
|
|
style={{ flex: 2 }} |
|
|
|
|
> |
|
|
|
|
{persian[specification]} |
|
|
|
|
</div> |
|
|
|
|
<div className="bg-white rounded p-3" style={{ flex: 8 }}> |
|
|
|
|
<div className="bg-white rounded p-3 text-sm" style={{ flex: 8 }}> |
|
|
|
|
{specifications[specification]} |
|
|
|
|
</div> |
|
|
|
|
</li> |
|
|
|
|