@windrun-huaiin/diaomao 2.2.0 → 2.3.1
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/messages/en.json +5 -6
- package/package.json +2 -2
- package/src/components/hero.tsx +2 -2
- package/src/mdx/blog/index.mdx +1 -1
- package/src/mdx/blog/ioc.mdx +1 -1
package/messages/en.json
CHANGED
|
@@ -162,13 +162,12 @@
|
|
|
162
162
|
"titleR": "Creations",
|
|
163
163
|
"description": "Explore the incredible possibilities with Reve Image. Each image below was generated using the AI technology with the accompanying prompt.",
|
|
164
164
|
"button": "Create Your Own Images",
|
|
165
|
+
"defaultImgUrl": "https://r2.d8ger.com/default.webp",
|
|
165
166
|
"prompts": [
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
"A steampunk-inspired mechanical dragon with brass gears",
|
|
171
|
-
"A cosmic scene with planets, nebulae, and a spaceship"
|
|
167
|
+
{
|
|
168
|
+
"url": "https://r2.d8ger.com/Reve-Image/1.webp",
|
|
169
|
+
"altMsg": "A futuristic cityscape with flying vehicles and neon lights"
|
|
170
|
+
}
|
|
172
171
|
]
|
|
173
172
|
},
|
|
174
173
|
"tips": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windrun-huaiin/diaomao",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@types/mdx": "^2.0.13",
|
|
28
28
|
"@windrun-huaiin/base-ui": "^6.0.1",
|
|
29
29
|
"@windrun-huaiin/lib": "^6.1.0",
|
|
30
|
-
"@windrun-huaiin/third-ui": "^5.11.
|
|
30
|
+
"@windrun-huaiin/third-ui": "^5.11.5",
|
|
31
31
|
"autoprefixer": "^10.4.21",
|
|
32
32
|
"class-variance-authority": "^0.7.1",
|
|
33
33
|
"clsx": "^2.1.1",
|
package/src/components/hero.tsx
CHANGED
|
@@ -12,11 +12,11 @@ export function Hero() {
|
|
|
12
12
|
return (
|
|
13
13
|
<section className="container mx-auto px-4 py-12 flex flex-col md:flex-row items-center gap-12">
|
|
14
14
|
<div className="flex-[1.6] space-y-6">
|
|
15
|
-
<h1 className="text-
|
|
15
|
+
<h1 className="text-3xl md:text-5xl font-bold leading-tight">
|
|
16
16
|
{t('mainTitle')}<br />{" "}
|
|
17
17
|
<span className="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-pink-600">{t('mainEyesOn')}</span>
|
|
18
18
|
</h1>
|
|
19
|
-
<p className="text-
|
|
19
|
+
<p className="text-base md:text-2xl leading-tight text-gray-400">
|
|
20
20
|
{t('description')}
|
|
21
21
|
</p>
|
|
22
22
|
<GradientButton
|
package/src/mdx/blog/index.mdx
CHANGED