diff options
| author | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2025-08-19 13:23:17 +0200 |
|---|---|---|
| committer | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2025-08-19 13:23:17 +0200 |
| commit | c04bc9a36ebfcdf6d8e2db8a6cdeb44062b66bec (patch) | |
| tree | 42dfa70f41f701b561455aac01b45ec72f816184 /frontend/src/pages/Home | |
| parent | fix/frontend: smol syntax fix (diff) | |
| download | lphub-c04bc9a36ebfcdf6d8e2db8a6cdeb44062b66bec.tar.gz lphub-c04bc9a36ebfcdf6d8e2db8a6cdeb44062b66bec.tar.bz2 lphub-c04bc9a36ebfcdf6d8e2db8a6cdeb44062b66bec.zip | |
organised pages, started work on theme
Diffstat (limited to 'frontend/src/pages/Home')
| -rw-r--r-- | frontend/src/pages/Home/Homepage.tsx | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/frontend/src/pages/Home/Homepage.tsx b/frontend/src/pages/Home/Homepage.tsx new file mode 100644 index 0000000..b4ac3b0 --- /dev/null +++ b/frontend/src/pages/Home/Homepage.tsx | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | import React from "react"; | ||
| 2 | import { Helmet } from "react-helmet"; | ||
| 3 | |||
| 4 | const Homepage: React.FC = () => { | ||
| 5 | return ( | ||
| 6 | <main className="ml-12 relative left-0 w-fullmin-h-screen p-4 sm:p-8 text-foreground font-[--font-barlow-semicondensed-regular]"> | ||
| 7 | <Helmet> | ||
| 8 | <title>LPHUB | Homepage</title> | ||
| 9 | </Helmet> | ||
| 10 | <section className="p-8"> | ||
| 11 | <p /> | ||
| 12 | <h1 className="text-5xl font-[--font-barlow-condensed-bold] mb-6 text-primary">Welcome to Least Portals Hub!</h1> | ||
| 13 | <p className="text-lg mb-4 leading-relaxed"> | ||
| 14 | At the moment, LPHUB is in beta state. This means that the site has | ||
| 15 | only the core functionalities enabled for providing both collaborative | ||
| 16 | information and competitive leaderboards. | ||
| 17 | </p> | ||
| 18 | <p className="text-lg mb-4 leading-relaxed"> | ||
| 19 | The website should feel intuitive to navigate around. For any type of | ||
| 20 | feedback, reach us at LPHUB Discord server. | ||
| 21 | </p> | ||
| 22 | <p className="text-lg mb-4 leading-relaxed"> | ||
| 23 | By using LPHUB, you agree that you have read the 'Leaderboard Rules' | ||
| 24 | and the 'About LPHUB' pages. | ||
| 25 | </p> | ||
| 26 | </section> | ||
| 27 | </main> | ||
| 28 | ); | ||
| 29 | }; | ||
| 30 | |||
| 31 | export default Homepage; | ||