Skip to content

Commit

Permalink
Add 4th tier (very difficult)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbe-j committed Nov 12, 2023
1 parent a55c865 commit 37bc106
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion dance-app/src/sections/home.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Container, Typography, Button, Grid } from "@mui/material";
import { Container, Typography, Button, Grid, Tooltip } from "@mui/material";
import RecordingPage from "./recording";
import { useEffect, useState } from "react";
import pb from "../pocketBase";
Expand Down Expand Up @@ -99,6 +99,18 @@ const HomeSection = ({ setConfetti }: HomeSectionProps) => {
Tier 3
</Button>
</Grid>
<Grid item xs={8} md={4}>
<Tooltip title="Extra difficult">
<Button
variant="contained"
color="info"
fullWidth
onClick={() => handleButtonClick(Tier.Tier4)}
>
Tier 4
</Button>
</Tooltip>
</Grid>
</Grid>
</Container>
)}
Expand Down

0 comments on commit 37bc106

Please sign in to comment.