Skip to content

Commit

Permalink
Merge pull request #43 from illacloud/fix/bugs
Browse files Browse the repository at this point in the history
fix: bugs
  • Loading branch information
Wangtaofeng authored Jan 3, 2024
2 parents 94a8ab7 + 8d23e57 commit 540e0e1
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions src/components/home/Index/components/Solutions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,23 +106,22 @@ const Solutions: FC = () => {
>
{item.content}
</div>
</div>

<div className={style.linkButtonStyle}>
<LinkButton
href={handleDemoHref(item.appID)}
size="small"
colorType="dark"
handleClick={() => {
sendTagEvent({
action: "solution_try_for_free",
})
}}
>
<Translate id="website_4.solution.use_this_template">
Try now
</Translate>
</LinkButton>
<div className={style.linkButtonStyle}>
<LinkButton
href={handleDemoHref(item.appID)}
size="small"
colorType="dark"
handleClick={() => {
sendTagEvent({
action: "solution_try_for_free",
})
}}
>
<Translate id="website_4.solution.use_this_template">
Try now
</Translate>
</LinkButton>
</div>
</div>
</Fragment>
))}
Expand Down

0 comments on commit 540e0e1

Please sign in to comment.