@codesinger0/shared-components 1.0.24 → 1.0.25
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.
- package/dist/components/Hero.jsx +4 -4
- package/package.json +1 -1
package/dist/components/Hero.jsx
CHANGED
|
@@ -72,10 +72,10 @@ const Hero = ({
|
|
|
72
72
|
<h1 className={titleClass + " mb-4"}>
|
|
73
73
|
{title}
|
|
74
74
|
</h1>
|
|
75
|
-
<p className="
|
|
75
|
+
<p className={subtitleClass + " mb-4"}>
|
|
76
76
|
{subtitle}
|
|
77
77
|
</p>
|
|
78
|
-
<p className="
|
|
78
|
+
<p className={miniSubtitleClass + " mb-12"}>
|
|
79
79
|
{miniSubtitle}
|
|
80
80
|
</p>
|
|
81
81
|
{additionalElements}
|
|
@@ -104,10 +104,10 @@ const Hero = ({
|
|
|
104
104
|
<div className="grid grid-cols-1 lg:grid-cols-2 gap-8 lg:gap-12 items-center">
|
|
105
105
|
{/* Text Content */}
|
|
106
106
|
<div className="text-center lg:text-right order-2 lg:order-1">
|
|
107
|
-
<h2 className="
|
|
107
|
+
<h2 className={introTitleClass + " mb-6"}>
|
|
108
108
|
{introTitle}
|
|
109
109
|
</h2>
|
|
110
|
-
<p className="
|
|
110
|
+
<p className={introContentClass + " leading-relaxed"} style={{ whiteSpace: 'pre-line' }}>
|
|
111
111
|
{introContent}
|
|
112
112
|
</p>
|
|
113
113
|
</div>
|