diff --git a/src/components/MainMenu.tsx b/src/components/MainMenu.tsx index e69de29..0b71be9 100644 --- a/src/components/MainMenu.tsx +++ b/src/components/MainMenu.tsx @@ -0,0 +1,25 @@ +import React from "react"; +import Title from "./Title"; + +// function onClick(){ +// print(); +// } +Title +function MainMenu(){ +return( +
+ + <button className="text-white border border-solid border-white p-4"> <span className="text-5xl">Start</span> </button> + <p className="text-white text-xs pt-5 w-80" > + This game contains flashing lights that may trigger seizures for individuals with photosensitive + epilepsy or other conditions. If you experience + any discomfort, dizziness, etc. during the game, + please take a break immediately and consult a + healthcare professional if necessary. Your safety + and well-being are important. + </p> + </div> +) +} + +export default MainMenu; \ No newline at end of file