@windrun-huaiin/diaomao 2.0.2 → 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 +1 -1
- package/package.json +4 -4
- package/public/bug-off.png +0 -0
- package/public/bug-off.svg +13 -0
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-180x180.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon-512x512.png +0 -0
- package/public/favicon-base(75x75).png +0 -0
- package/public/favicon.ico +0 -0
- package/src/app/[locale]/(home)/page.tsx +1 -1
- package/src/app/[locale]/layout.config.tsx +6 -1
- package/src/lib/site-config.ts +1 -1
- package/src/mdx/blog/index.mdx +1 -1
- package/src/mdx/blog/ioc.mdx +1 -1
- package/public/pi-icon.png +0 -0
- package/public/pi-icon.svg +0 -5
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",
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
|
|
2
|
+
stroke="#AC62FD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
|
|
3
|
+
class="lucide lucide-bug-off-icon lucide-bug-off">
|
|
4
|
+
<path d="M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2" />
|
|
5
|
+
<path d="M14.12 3.88 16 2" />
|
|
6
|
+
<path d="M22 13h-4v-2a4 4 0 0 0-4-4h-1.3" />
|
|
7
|
+
<path d="M20.97 5c0 2.1-1.6 3.8-3.5 4" />
|
|
8
|
+
<path d="m2 2 20 20" />
|
|
9
|
+
<path d="M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13" />
|
|
10
|
+
<path d="M12 20v-8" />
|
|
11
|
+
<path d="M6 13H2" />
|
|
12
|
+
<path d="M3 21c0-2.1 1.7-3.9 3.8-4" />
|
|
13
|
+
</svg>
|
package/public/favicon-16x16.png
CHANGED
|
Binary file
|
|
Binary file
|
package/public/favicon-32x32.png
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/public/favicon.ico
CHANGED
|
Binary file
|
|
@@ -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>
|
|
@@ -12,10 +12,15 @@ export async function homeNavLinks(locale: string): Promise<LinkItemType[]> {
|
|
|
12
12
|
const t1 = await getTranslations({ locale: locale, namespace: 'linkPreview' });
|
|
13
13
|
return [
|
|
14
14
|
{
|
|
15
|
-
icon: <icons.
|
|
15
|
+
icon: <icons.BugOff />,
|
|
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/lib/site-config.ts
CHANGED
package/src/mdx/blog/index.mdx
CHANGED
package/src/mdx/blog/ioc.mdx
CHANGED
package/public/pi-icon.png
DELETED
|
Binary file
|
package/public/pi-icon.svg
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke="currentColor" >
|
|
2
|
-
<line x1="9" x2="9" y1="4" y2="20" fill="none" stroke="#AC62FD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
3
|
-
<path d="M4 7c0-1.7 1.3-3 3-3h13" fill="none" stroke="#AC62FD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
4
|
-
<path d="M18 20c-1.7 0-3-1.3-3-3V4" fill="none" stroke="#AC62FD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
5
|
-
</svg>
|