- Fixed Challenge Modal overlap issue by adjusting the main stacking context in App.tsx
- Implemented "click-outside-to-close" functionality for both the Challenge Modal and User Dropdown - Added protocol-specific action buttons for challenges: "Open in new tab" for HTTP and "Copy to clipboard" for NC - Enhanced Scoreboard rankings with significantly larger, consistent font sizes (text-2xl) for better readability - Rebranded "TEAM_IDENTIFIER" to "PLAYER" and "TOTAL_POINTS" to "POINTS" across the platform (Scoreboard, Matrix, User Menu) - Updated navigation: Renamed "SCOREBOARD" to "SCORES" in the nav bar and dynamic page titles - Modernized User Dropdown menu with a dedicated "PLAYER" header and "LOGOUT" action - Improved Score Matrix and Score Graph titles for consistency with the new "Player" terminology - Added CAPTCHA human verification (svg-captcha) to Login and Registration flows for enhanced security - Optimized frontend assets by migrating Tailwind and JetBrains Mono to local hosting - Refactored Admin panel: Renamed "Operators" to "Users" and improved layout alignment
This commit is contained in:
8
Home.tsx
8
Home.tsx
@@ -36,20 +36,20 @@ export const Home: React.FC = () => {
|
||||
{/* Pyramid Base */}
|
||||
<div className="flex flex-wrap justify-center gap-6">
|
||||
<Link to="/register">
|
||||
<Button className="text-xl px-12">Join_Us</Button>
|
||||
<Button className="text-xl px-12">REGISTER</Button>
|
||||
</Link>
|
||||
<Link to="/login">
|
||||
<Button variant="secondary" className="text-xl px-12">Sign_In</Button>
|
||||
<Button variant="secondary" className="text-xl px-12">LOGIN</Button>
|
||||
</Link>
|
||||
</div>
|
||||
</>
|
||||
) : (
|
||||
<div className="flex flex-wrap justify-center gap-6">
|
||||
<Link to="/challenges">
|
||||
<Button className="text-xl px-10">Challenges</Button>
|
||||
<Button className="text-xl px-10">CHALLENGES</Button>
|
||||
</Link>
|
||||
<Link to="/blog">
|
||||
<Button variant="secondary" className="text-xl px-10">Read Blog</Button>
|
||||
<Button variant="secondary" className="text-xl px-10">BLOG</Button>
|
||||
</Link>
|
||||
</div>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user