Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
chore: Revert "chore: remove launch app button on home" (#330)
Browse files Browse the repository at this point in the history
Revert "chore: remove launch app button on home (#325)"

This reverts commit 9cb751d.
  • Loading branch information
adlerjohn authored Jun 23, 2022
1 parent 54802a7 commit 4f11980
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/app/src/systems/Home/components/HomeHero.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { Link } from "~/systems/UI";
import { useNavigate } from "react-router-dom";

import { Button, Link } from "~/systems/UI";
import { Pages } from "~/types";

export function HomeHero() {
const navigate = useNavigate();
return (
<div className="homePage--hero">
<h1>
Expand All @@ -24,6 +28,9 @@ export function HomeHero() {
scaling beyond layer-2s and monolithic blockchain design.
#BeyondMonolithic
</p>
<Button size="lg" variant="primary" onPress={() => navigate(Pages.swap)}>
Launch app
</Button>
</div>
);
}

0 comments on commit 4f11980

Please sign in to comment.