In the future, please just copy the text and paste it here in a code block. A screen shot image pasted into a google drive document then shared, then pasted that link is a long way around.
I'll transcribe three of the errors from that screen shot.
MainMenu.cs(10,59): error CS1001: Identifier expected
MainMenu.cs(10,59): error CS1003: Syntax error, β,β expected
Check line 59. There is probably a parameter missing. There might also be a semicolon missing at the end, or the compiler just got confused with the missing identifier.
LoadScene() has a mandatory parameter of the scene name, and an optional parameter of the mode. Check the spellings of everything.
MainMenu.cs(10,60): Error CS8124: Tuple must contain at least two elements.
Check line 60. This might be a carry-over from earlier errors, or from bigger structural errors. Possibly you have code that is outside of a function body, either because the compiler is struggling to recover from earlier errors, or because you misplaced some semicolons.
Repeat for the other errors. Line 61 and 62 are missing semicolons at the end, again either because they are actually missing or because of errors on earlier lines.
Lines 73 and 77 are missing other punctuation, but have similar issues.