diff options
Diffstat (limited to 'frontend/src/pages')
| -rw-r--r-- | frontend/src/pages/Homepage.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/frontend/src/pages/Homepage.tsx b/frontend/src/pages/Homepage.tsx new file mode 100644 index 0000000..a5429cb --- /dev/null +++ b/frontend/src/pages/Homepage.tsx | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | import React from 'react'; | ||
| 2 | import { PortalIcon } from '../images/Images'; | ||
| 3 | |||
| 4 | const Homepage: React.FC = () => { | ||
| 5 | |||
| 6 | return ( | ||
| 7 | <main> | ||
| 8 | <section> | ||
| 9 | <h1><img src={PortalIcon}/>Welcome to Least Portals Hub!</h1> | ||
| 10 | <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> | ||
| 11 | <p>Site should feel intuitive to navigate around. For any type of feedback, reach us at LPHUB Discord server.</p> | ||
| 12 | <p>By using LPHUB, you agree that you have read the 'Leaderboard Rules' and the 'About P2LP' pages.</p> | ||
| 13 | </section> | ||
| 14 | </main> | ||
| 15 | ); | ||
| 16 | }; | ||
| 17 | |||
| 18 | export default Homepage; | ||