aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Homepage.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/pages/Homepage.tsx')
-rw-r--r--frontend/src/pages/Homepage.tsx32
1 files changed, 16 insertions, 16 deletions
diff --git a/frontend/src/pages/Homepage.tsx b/frontend/src/pages/Homepage.tsx
index 4f46af5..3f30d9a 100644
--- a/frontend/src/pages/Homepage.tsx
+++ b/frontend/src/pages/Homepage.tsx
@@ -1,22 +1,22 @@
1import React from 'react'; 1import React from "react";
2import { Helmet } from 'react-helmet'; 2import { Helmet } from "react-helmet";
3 3
4const Homepage: React.FC = () => { 4const Homepage: React.FC = () => {
5 5
6 return ( 6 return (
7 <main> 7 <main>
8 <Helmet> 8 <Helmet>
9 <title>LPHUB | Homepage</title> 9 <title>LPHUB | Homepage</title>
10 </Helmet> 10 </Helmet>
11 <section> 11 <section>
12 <p /> 12 <p />
13 <h1>Welcome to Least Portals Hub!</h1> 13 <h1>Welcome to Least Portals Hub!</h1>
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 <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>
15 <p>The website should feel intuitive to navigate around. For any type of feedback, reach us at LPHUB Discord server.</p> 15 <p>The website should feel intuitive to navigate around. For any type of feedback, reach us at LPHUB Discord server.</p>
16 <p>By using LPHUB, you agree that you have read the 'Leaderboard Rules' and the 'About LPHUB' pages.</p> 16 <p>By using LPHUB, you agree that you have read the 'Leaderboard Rules' and the 'About LPHUB' pages.</p>
17 </section> 17 </section>
18 </main> 18 </main>
19 ); 19 );
20}; 20};
21 21
22export default Homepage; 22export default Homepage;