From ff37cca46430ed714015647469f88ce06781457a Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 29 Jun 2025 01:28:39 -0700 Subject: scaffold register,login,and auth endpoints --- frontend/src/pages/Landing.tsx | 154 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 frontend/src/pages/Landing.tsx (limited to 'frontend/src/pages/Landing.tsx') diff --git a/frontend/src/pages/Landing.tsx b/frontend/src/pages/Landing.tsx new file mode 100644 index 0000000..7cd0f43 --- /dev/null +++ b/frontend/src/pages/Landing.tsx @@ -0,0 +1,154 @@ +import { Link } from 'react-router'; + +const Landing = () => { + return ( +
+ {/* Navigation */} + + + {/* Hero Section with Banner */} +
+ {/* Background Image */} +
+ + {/* Overlay */} +
+ + {/* Content */} +
+
+

+ Welcome to Mirage! +

+

+ Looks like you're not logged in. If you've got an account, Login! +

+
+
+
+ + {/* Introduction Section */} +
+
+
+

+ I'm New Around Here, What is this? +

+

+ Mirage is a Rhythm Game Score Tracker. That means we... +

+
+
+
+ + {/* Track Your Scores Section */} +
+
+
+

+ Track Your Scores. +

+

+ Mirage supports a bunch of your favourite games, and integrates with many existing services to + make sure no score is lost to the void. Furthermore, it's backed by an Open-Source API, so your + scores are always available! +

+
+
+
+ + {/* Analyse Your Scores Section */} +
+
+
+

+ Analyse Your Scores. +

+

+ Mirage analyses your scores for you, breaking them down into all the statistics you'll ever need. + No more spreadsheets! +

+
+
+
+ + {/* Provide Cool Features Section */} +
+
+
+

+ Provide Cool Features. +

+

+ Mirage implements the features rhythm gamers already talk about. Break your scores down + into sessions, showcase your best metrics on your profile, study your progress on folders - it's all + there, and done for you! +

+
+
+
+ + {/* Call to Action Section */} +
+
+
+

+ Ready to Start Tracking? +

+
+ + Create Account + + + Log In + +
+
+
+
+ + {/* Footer */} + +
+ ); +}; + +export default Landing; -- cgit v1.2.3