@windrun-huaiin/diaomao 2.0.3 → 2.1.0
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
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windrun-huaiin/diaomao",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"@radix-ui/react-slot": "^1.2.2",
|
|
26
26
|
"@tailwindcss/typography": "latest",
|
|
27
27
|
"@types/mdx": "^2.0.13",
|
|
28
|
-
"@windrun-huaiin/base-ui": "^5.3.
|
|
29
|
-
"@windrun-huaiin/lib": "^5.7.
|
|
30
|
-
"@windrun-huaiin/third-ui": "^5.
|
|
28
|
+
"@windrun-huaiin/base-ui": "^5.3.4",
|
|
29
|
+
"@windrun-huaiin/lib": "^5.7.2",
|
|
30
|
+
"@windrun-huaiin/third-ui": "^5.10.0",
|
|
31
31
|
"autoprefixer": "^10.4.21",
|
|
32
32
|
"class-variance-authority": "^0.7.1",
|
|
33
33
|
"clsx": "^2.1.1",
|
|
@@ -8,11 +8,11 @@ export default function Home() {
|
|
|
8
8
|
return (
|
|
9
9
|
<main className="min-h-screen flex flex-col bg-neutral-100 dark:bg-neutral-900 transition-colors duration-300">
|
|
10
10
|
<Hero />
|
|
11
|
-
<PricePlan pricePlanConfig={pricePlanConfig} currency="¥" />
|
|
12
11
|
<Usage />
|
|
13
12
|
<Features />
|
|
14
13
|
<Tips />
|
|
15
14
|
<FAQ />
|
|
15
|
+
<PricePlan pricePlanConfig={pricePlanConfig} currency="¥" />
|
|
16
16
|
<SeoContent />
|
|
17
17
|
<CTA />
|
|
18
18
|
</main>
|
|
@@ -16,6 +16,11 @@ export async function homeNavLinks(locale: string): Promise<LinkItemType[]> {
|
|
|
16
16
|
text: t1('blog'),
|
|
17
17
|
url: `/${locale}/blog`,
|
|
18
18
|
},
|
|
19
|
+
{
|
|
20
|
+
icon: <icons.BTC />,
|
|
21
|
+
text: t1('pricing'),
|
|
22
|
+
url: `/${locale}#pricing`,
|
|
23
|
+
},
|
|
19
24
|
{
|
|
20
25
|
type: 'custom',
|
|
21
26
|
// false to put the menu on the left, true to put the button on the right
|
package/src/mdx/blog/index.mdx
CHANGED