Skip to content

Commit

Permalink
Add the text for the CapyRun game
Browse files Browse the repository at this point in the history
  • Loading branch information
isstuev committed Jan 6, 2025
1 parent db6708e commit 729e0e4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/games/CapybaraRunner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ import Script from 'next/script';
import React from 'react';

import config from 'configs/app';

import useIsMobile from 'lib/hooks/useIsMobile';
const easterEggBadgeFeature = config.features.easterEggBadge;

const CapybaraRunner = () => {
const [ hasReachedHighScore, setHasReachedHighScore ] = React.useState(false);

const isMobile = useIsMobile();

React.useEffect(() => {
const preventDefaultKeys = (e: KeyboardEvent) => {
if (e.code === 'Space' || e.code === 'ArrowUp' || e.code === 'ArrowDown') {
Expand All @@ -32,6 +34,8 @@ const CapybaraRunner = () => {

return (
<>
<Box as="h2" mt={ 12 } mb={ 2 } fontWeight={ 600 } fontSize="xl">Score 1000 to win a special prize!</Box>
<Box mb={ 4 }>{ isMobile ? 'Tap below to start' : 'Press space to start' }</Box>
<Script strategy="lazyOnload" src="/static/capibara/index.js"/>
<Box width={{ base: '100%', lg: '600px' }} height="300px" p="50px 0">
<div id="main-frame-error" className="interstitial-wrapper" style={{ marginTop: '20px' }}>
Expand Down

0 comments on commit 729e0e4

Please sign in to comment.