@windrun-huaiin/third-ui 5.1.2 → 5.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windrun-huaiin/third-ui",
3
- "version": "5.1.2",
3
+ "version": "5.1.4",
4
4
  "description": "Third-party integrated UI components for windrun-huaiin projects",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
package/src/main/cta.tsx CHANGED
@@ -7,14 +7,19 @@ export function CTA() {
7
7
  const t = useTranslations('cta');
8
8
  return (
9
9
  <section className="container mx-auto px-4 py-20">
10
- <div className="bg-gradient-to-r from-purple-200 to-pink-300 rounded-3xl p-12 text-center text-white bg-[length:200%_auto] animate-cta-gradient-wave">
10
+ <div className="
11
+ bg-gradient-to-r from-[#f7f8fa] via-[#e0c3fc] to-[#b2fefa]
12
+ dark:bg-gradient-to-r dark:from-[#2d0b4e] dark:via-[#6a3fa0] dark:to-[#3a185a]
13
+ rounded-2xl p-12 text-center
14
+ bg-[length:200%_auto] animate-cta-gradient-wave
15
+ ">
11
16
  <h2 className="text-3xl md:text-4xl font-bold mb-6">
12
17
  {t('title')} <span className="text-purple-400">{t('eyesOn')}</span>?
13
18
  </h2>
14
- <p className="text-xl max-w-2xl mx-auto mb-8 text-white/80">
19
+ <p className="text-2xl mx-auto mb-8">
15
20
  {t('description1')}
16
21
  <br />
17
- {t('description2')}
22
+ <span className="text-purple-400">{t('description2')}</span>
18
23
  </p>
19
24
  <GradientButton
20
25
  title={t('button')}