File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed
apps/dashboard/src/components/contract-components/contract-deploy-form Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change 1+ import Link from "next/link" ;
12import { Fieldset } from "./common" ;
23
34interface 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 >
You can’t perform that action at this time.
0 commit comments