diff options
Diffstat (limited to 'frontend/src/pages/Homepage.tsx')
| -rw-r--r-- | frontend/src/pages/Homepage.tsx | 39 |
1 files changed, 24 insertions, 15 deletions
diff --git a/frontend/src/pages/Homepage.tsx b/frontend/src/pages/Homepage.tsx index 4f46af5..859af52 100644 --- a/frontend/src/pages/Homepage.tsx +++ b/frontend/src/pages/Homepage.tsx | |||
| @@ -2,21 +2,30 @@ import React from 'react'; | |||
| 2 | import { Helmet } from 'react-helmet'; | 2 | import { Helmet } from 'react-helmet'; |
| 3 | 3 | ||
| 4 | const Homepage: React.FC = () => { | 4 | const Homepage: React.FC = () => { |
| 5 | 5 | return ( | |
| 6 | return ( | 6 | <main> |
| 7 | <main> | 7 | <Helmet> |
| 8 | <Helmet> | 8 | <title>LPHUB | Homepage</title> |
| 9 | <title>LPHUB | Homepage</title> | 9 | </Helmet> |
| 10 | </Helmet> | 10 | <section> |
| 11 | <section> | 11 | <p /> |
| 12 | <p /> | 12 | <h1>Welcome to Least Portals Hub!</h1> |
| 13 | <h1>Welcome to Least Portals Hub!</h1> | 13 | <p> |
| 14 | <p>At the moment, LPHUB is in beta state. This means that the site has only the core functionalities enabled for providing both collaborative information and competitive leaderboards.</p> | 14 | At the moment, LPHUB is in beta state. This means that the site has |
| 15 | <p>The website should feel intuitive to navigate around. For any type of feedback, reach us at LPHUB Discord server.</p> | 15 | only the core functionalities enabled for providing both collaborative |
| 16 | <p>By using LPHUB, you agree that you have read the 'Leaderboard Rules' and the 'About LPHUB' pages.</p> | 16 | information and competitive leaderboards. |
| 17 | </section> | 17 | </p> |
| 18 | </main> | 18 | <p> |
| 19 | ); | 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> | ||
| 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 | ); | ||
| 20 | }; | 29 | }; |
| 21 | 30 | ||
| 22 | export default Homepage; | 31 | export default Homepage; |