Skip to content

Commit bd2eede

Browse files
committed
blogpost link
1 parent 55c5671 commit bd2eede

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

apps/dashboard/src/components/contract-components/contract-deploy-form/platform-fee-fieldset.tsx

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import Link from "next/link";
12
import { Fieldset } from "./common";
23

34
interface PlatformFeeFieldsetProps {
@@ -13,12 +14,30 @@ export const PlatformFeeFieldset: React.FC<PlatformFeeFieldsetProps> = (
1314
{props.isMarketplace ? (
1415
<p className="mb-3 pt-4 text-muted-foreground text-sm italic">
1516
A 2.5% platform fee is deducted from each sale to support ongoing
16-
platform operations and improvements.
17+
platform operations and improvements.{" "}
18+
<Link
19+
target="_blank"
20+
className="text-blue-500 underline"
21+
href={
22+
"https://blog.thirdweb.com/mint-fees-for-contract-deployments-update/"
23+
}
24+
>
25+
Read more.
26+
</Link>
1727
</p>
1828
) : (
1929
<p className="mb-3 pt-4 text-muted-foreground text-sm italic">
2030
A 2.5% platform fee is deducted from each primary sale price to
21-
support ongoing platform operations and improvements.
31+
support ongoing platform operations and improvements.{" "}
32+
<Link
33+
target="_blank"
34+
className="text-blue-500 underline"
35+
href={
36+
"https://blog.thirdweb.com/mint-fees-for-contract-deployments-update/"
37+
}
38+
>
39+
Read more.
40+
</Link>
2241
</p>
2342
)}
2443
</div>

0 commit comments

Comments
 (0)