diff options
Diffstat (limited to 'packages/website/ts/@next')
-rw-r--r-- | packages/website/ts/@next/pages/launch_kit.tsx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/packages/website/ts/@next/pages/launch_kit.tsx b/packages/website/ts/@next/pages/launch_kit.tsx index 1c0ce7d06..189c46892 100644 --- a/packages/website/ts/@next/pages/launch_kit.tsx +++ b/packages/website/ts/@next/pages/launch_kit.tsx @@ -107,13 +107,17 @@ export class NextLaunchKit extends React.Component { } const HeroActions = () => ( - <> + <React.Fragment> <Button href="https://github.com/0xProject/0x-launch-kit" isInline={true}> Get Started </Button> - <Button to={WebsitePaths.Why} isTransparent={true} isInline={true}> + <Button + to={'https://blog.0xproject.com/introducing-the-0x-launch-kit-4acdc3453585'} + isTransparent={true} + isInline={true} + > Learn More </Button> - </> + </React.Fragment> ); |