@codesinger0/shared-components 1.1.27 → 1.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -23,7 +23,7 @@ const TextListCards = ({
|
|
|
23
23
|
|
|
24
24
|
return (
|
|
25
25
|
<section className={`py-20 ${className}`} {...props}>
|
|
26
|
-
<div className="max-w-
|
|
26
|
+
<div className="max-w-6xl mx-auto">
|
|
27
27
|
{/* Header Section */}
|
|
28
28
|
{(title || subtitle) && (
|
|
29
29
|
<motion.div
|
|
@@ -67,16 +67,16 @@ const TextListCards = ({
|
|
|
67
67
|
)}
|
|
68
68
|
|
|
69
69
|
{/* Title */}
|
|
70
|
-
<h3 className="subtitle font-
|
|
70
|
+
<h3 className="subtitle font-bold mb-6" dir="rtl">
|
|
71
71
|
{item.title}
|
|
72
72
|
</h3>
|
|
73
73
|
|
|
74
74
|
{/* Points List */}
|
|
75
75
|
{item.points && item.points.length > 0 && (
|
|
76
|
-
<ul className="space-y-3
|
|
76
|
+
<ul className="space-y-3" dir="rtl">
|
|
77
77
|
{item.points.map((point, i) => (
|
|
78
78
|
<li key={i} className="flex flex-col items-center md:flex-row md:items-start">
|
|
79
|
-
<CircleCheck className="w-5 h-5 text-primary
|
|
79
|
+
<CircleCheck className="w-5 h-5 text-primary mt-1 ml-2 flex-shrink-0" />
|
|
80
80
|
<span className="content-text text-center md:text-right">{point}</span>
|
|
81
81
|
</li>
|
|
82
82
|
))}
|