diff options
| author | Fuwn <[email protected]> | 2021-04-09 16:19:48 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-09 16:19:48 -0700 |
| commit | e4626768af76c2de4e4c2d0911449296d6281a0a (patch) | |
| tree | bc748722c91fd59395c9715403975880b57434e5 /src | |
| parent | Merge branch 'main' of https://github.com/Whirlsplash/site into main (diff) | |
| download | site-e4626768af76c2de4e4c2d0911449296d6281a0a.tar.xz site-e4626768af76c2de4e4c2d0911449296d6281a0a.zip | |
fix: Disabled buttons still work
Diffstat (limited to 'src')
| -rw-r--r-- | src/pages/index.js | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/pages/index.js b/src/pages/index.js index 0801830..8047b45 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -18,11 +18,9 @@ const features = [ enjoy! </div> <div className="card__footer"> - <a href="#" target="_blank"> - <button className="button button--primary button--block disabled"> - Get Started - </button> - </a> + <button className="button button--primary button--block disabled"> + Get Started + </button> </div> </div> ), @@ -37,11 +35,9 @@ const features = [ admin in game? done! YOU rule YOUR server. </div> <div className="card__footer"> - <a href="#" target="_blank"> - <button className="button button--primary button--block disabled"> - Explore Configuration Options - </button> - </a> + <button className="button button--primary button--block disabled"> + Explore Configuration Options + </button> </div> </div> ), |