import { Clue } from "./clue"; import { Row, RowState } from "./Row"; import { maxGuesses } from "./util"; export function About() { return (

hello wordl is a remake of the word game{" "} Wordle {" "} by powerlanguage, which I think is based on the TV show Lingo.

You get {maxGuesses} tries to guess a target word.
After each guess, you get Mastermind-style feedback:

W and O aren't in the target word at all.
R is correct! The third letter is R .
D occurs elsewhere in the target word.

Let's move the D in our next guess:

So close!

Got it!

Report issues{" "} here, or tweet{" "} @chordbug.

); }