aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Homepage.tsx
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2024-09-04 12:19:53 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2024-09-04 12:19:53 +0300
commitf6f7857d217ae5b4d705e0fffb167dcfd3722436 (patch)
tree6ac125ff88f186af023d1da06cf191a12be00b62 /frontend/src/pages/Homepage.tsx
parentrefactor: update sidebar for core pages, small fix in modmenu (diff)
downloadlphub-f6f7857d217ae5b4d705e0fffb167dcfd3722436.tar.gz
lphub-f6f7857d217ae5b4d705e0fffb167dcfd3722436.tar.bz2
lphub-f6f7857d217ae5b4d705e0fffb167dcfd3722436.zip
refactor: add basic homepage
Diffstat (limited to 'frontend/src/pages/Homepage.tsx')
-rw-r--r--frontend/src/pages/Homepage.tsx18
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 @@
1import React from 'react';
2import { PortalIcon } from '../images/Images';
3
4const 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
18export default Homepage;