From aee1422203ad4d70f6c0f483bc58af00c176e103 Mon Sep 17 00:00:00 2001 From: James Mullane Date: Sat, 3 Aug 2024 17:28:04 +1200 Subject: [PATCH] Main Menu LGTM!!!!!!!! --- src/components/MainMenu.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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