diff --git a/public/bingo.ico b/public/bingo.ico new file mode 100644 index 0000000..68eb43a Binary files /dev/null and b/public/bingo.ico differ diff --git a/public/bingo.png b/public/bingo.png new file mode 100644 index 0000000..327ec9e Binary files /dev/null and b/public/bingo.png differ diff --git a/public/index.html b/public/index.html index 1c01e35..2cd2c81 100644 --- a/public/index.html +++ b/public/index.html @@ -2,7 +2,7 @@
- + div > div { - background: #E48720; + background: var(--cs-orange); display: grid; border-radius: .5rem; aspect-ratio: 1; @@ -40,7 +49,7 @@ h1, span { } .legend { display: grid; - grid-template-columns: auto 1fr; + grid-template-columns: auto auto 1fr; column-gap: 2rem; } .legend .header span { diff --git a/src/App.tsx b/src/App.tsx index b551ed0..d3fd9a6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,11 +1,12 @@ -import React, { Fragment, useEffect, useState } from 'react'; +import { reverse } from 'dns'; +import React, { Fragment, useEffect, useMemo, useState } from 'react'; import './App.css'; -import {prompts} from './prompts'; +import {prompts, Categories} from './prompts'; const alphabet = "ABCDEFGHIKLMNOPQRSTUVWXYZ"; -const lskey_prompts = "cs_bingo_prompts-day2"; -const lskey_ticked = "cs_bingo_ticked-day2"; +const lskey_prompts = "cs_bingo_prompts-day3"; +const lskey_ticked = "cs_bingo_ticked-day3"; const shuffle =