@windrun-huaiin/diaomao 31.2.0 → 31.3.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/dev-scripts.config.json +1 -0
- package/messages/en.json +7 -1
- package/next-env.d.ts +1 -1
- package/package.json +5 -5
- package/public/share-og.png +0 -0
- package/src/app/[locale]/(home)/pricing/page.tsx +20 -0
- package/src/app/[locale]/layout.tsx +16 -4
- package/src/mdx/blog/index.mdx +1 -1
- package/src/mdx/blog/ioc.mdx +1 -1
package/dev-scripts.config.json
CHANGED
package/messages/en.json
CHANGED
|
@@ -4,7 +4,13 @@
|
|
|
4
4
|
"banner": "Ship Faster | Charge Smarter | Scale Fearlessly",
|
|
5
5
|
"webTitle": "Diaomao – The Ultimate AI SaaS Starter Kit with Stripe, Credits & Docs",
|
|
6
6
|
"webDescription": "Next.js 14 + Prisma + PostgreSQL + Stripe + Clerk + Fumadocs. Production-ready pricing tiers, credit system, anonymous-to-auth onboarding, and beautiful docs — everything you need to launch and monetize your AI product in days, not months.",
|
|
7
|
-
"keywords": "AI SaaS template, Next.js boilerplate, Stripe billing, credit-based pricing, anonymous onboarding, Fumadocs, Prisma PostgreSQL, Clerk authentication"
|
|
7
|
+
"keywords": "AI SaaS template, Next.js boilerplate, Stripe billing, credit-based pricing, anonymous onboarding, Fumadocs, Prisma PostgreSQL, Clerk authentication",
|
|
8
|
+
"openGraph": {
|
|
9
|
+
"image": "/share-og.png"
|
|
10
|
+
},
|
|
11
|
+
"twitter": {
|
|
12
|
+
"image": "/share-og.png"
|
|
13
|
+
}
|
|
8
14
|
},
|
|
9
15
|
"hero": {
|
|
10
16
|
"mainTitle": "Ship a paid AI product with",
|
package/next-env.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="next" />
|
|
2
2
|
/// <reference types="next/image-types/global" />
|
|
3
|
-
import "./.next/
|
|
3
|
+
import "./.next/types/routes.d.ts";
|
|
4
4
|
|
|
5
5
|
// NOTE: This file should not be edited
|
|
6
6
|
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windrun-huaiin/diaomao",
|
|
3
|
-
"version": "31.
|
|
3
|
+
"version": "31.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@clerk/nextjs": "^7.3.3",
|
|
19
19
|
"@types/mdx": "^2.0.13",
|
|
20
|
-
"@windrun-huaiin/backend-core": "31.0.
|
|
20
|
+
"@windrun-huaiin/backend-core": "31.0.1",
|
|
21
21
|
"@windrun-huaiin/base-ui": "31.0.0",
|
|
22
22
|
"@windrun-huaiin/contracts": "31.0.0",
|
|
23
23
|
"@windrun-huaiin/fumadocs-local-md": "31.0.0",
|
|
24
|
-
"@windrun-huaiin/lib": "31.0.
|
|
25
|
-
"@windrun-huaiin/third-ui": "31.3.
|
|
24
|
+
"@windrun-huaiin/lib": "31.0.3",
|
|
25
|
+
"@windrun-huaiin/third-ui": "31.3.3",
|
|
26
26
|
"clsx": "^2.1.1",
|
|
27
27
|
"lucide-react": "^0.577.0",
|
|
28
28
|
"next": "16.1.6",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"react": "19.2.4",
|
|
32
32
|
"react-dom": "19.2.4",
|
|
33
33
|
"tailwind-merge": "^3.5.0",
|
|
34
|
-
"turbo": "^2.9.
|
|
34
|
+
"turbo": "^2.9.14"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@changesets/cli": "^2.29.8",
|
|
Binary file
|
|
@@ -1,11 +1,31 @@
|
|
|
1
1
|
|
|
2
2
|
import { appConfig } from '@/lib/appConfig';
|
|
3
|
+
import { createLocalizedMetadata } from '@windrun-huaiin/third-ui/lib/seo-metadata';
|
|
3
4
|
import { moneyPriceConfig } from '@windrun-huaiin/backend-core/config/money-price';
|
|
4
5
|
import { FingerprintStatus } from '@windrun-huaiin/third-ui/fingerprint';
|
|
5
6
|
import { buildMoneyPriceData } from '@windrun-huaiin/third-ui/main/money-price/server';
|
|
6
7
|
import { cn } from '@windrun-huaiin/lib/utils';
|
|
7
8
|
import { PricingClient } from './pricing-client';
|
|
8
9
|
|
|
10
|
+
export async function generateMetadata({
|
|
11
|
+
params,
|
|
12
|
+
}: {
|
|
13
|
+
params: Promise<{ locale: string }>;
|
|
14
|
+
}) {
|
|
15
|
+
const { locale } = await params;
|
|
16
|
+
return createLocalizedMetadata({
|
|
17
|
+
namespace: 'metadata.pricing',
|
|
18
|
+
url: {
|
|
19
|
+
locale,
|
|
20
|
+
pathname: '/pricing',
|
|
21
|
+
baseUrl: appConfig.baseUrl,
|
|
22
|
+
locales: appConfig.i18n.locales,
|
|
23
|
+
defaultLocale: appConfig.i18n.defaultLocale,
|
|
24
|
+
localePrefixAsNeeded: appConfig.i18n.localePrefixAsNeeded,
|
|
25
|
+
},
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
|
|
9
29
|
export default async function Pricing({
|
|
10
30
|
params,
|
|
11
31
|
searchParams,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { appConfig, generatedLocales, localePrefixAsNeeded, defaultLocale, themeMode } from '@/lib/appConfig';
|
|
2
2
|
import { getFumaTranslations } from '@windrun-huaiin/third-ui/fuma/fuma-translate-util';
|
|
3
|
-
import { createLocalizedSiteMetadata } from '@windrun-huaiin/third-ui/lib/seo-metadata';
|
|
3
|
+
import { createLocalizedPageMetadata, createLocalizedSiteMetadata } from '@windrun-huaiin/third-ui/lib/seo-metadata';
|
|
4
4
|
import { NProgressBar } from '@windrun-huaiin/third-ui/main';
|
|
5
5
|
import { DocsRootProvider } from '@windrun-huaiin/third-ui/fuma/base/docs-root-provider';
|
|
6
6
|
import { ClerkProviderClient } from '@windrun-huaiin/third-ui/clerk';
|
|
@@ -19,12 +19,24 @@ export async function generateMetadata({
|
|
|
19
19
|
params: Promise<{ locale: string }>
|
|
20
20
|
}) {
|
|
21
21
|
const { locale } = await paramsPromise;
|
|
22
|
-
|
|
22
|
+
const siteMetadata = await createLocalizedSiteMetadata({
|
|
23
23
|
locale,
|
|
24
24
|
baseUrl: appConfig.baseUrl,
|
|
25
25
|
locales: appConfig.i18n.locales,
|
|
26
|
-
defaultLocale,
|
|
27
|
-
localePrefixAsNeeded,
|
|
26
|
+
defaultLocale: appConfig.i18n.defaultLocale,
|
|
27
|
+
localePrefixAsNeeded: appConfig.i18n.localePrefixAsNeeded,
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
return createLocalizedPageMetadata({
|
|
31
|
+
url: {
|
|
32
|
+
locale,
|
|
33
|
+
pathname: '/',
|
|
34
|
+
baseUrl: appConfig.baseUrl,
|
|
35
|
+
locales: appConfig.i18n.locales,
|
|
36
|
+
defaultLocale: appConfig.i18n.defaultLocale,
|
|
37
|
+
localePrefixAsNeeded: appConfig.i18n.localePrefixAsNeeded,
|
|
38
|
+
},
|
|
39
|
+
site: siteMetadata,
|
|
28
40
|
});
|
|
29
41
|
}
|
|
30
42
|
|
package/src/mdx/blog/index.mdx
CHANGED