aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Homepage.tsx
blob: 8e5bb4b765714534b2de00b2eab9e194db66f4b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import React from 'react';
import { PortalIcon } from '../images/Images';

const Homepage: React.FC = () => {

    return (
        <main>
            <section>
                <p/>
                <h1><img src={PortalIcon} alt="lphub"/>Welcome to Least Portals Hub!</h1>
                <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>
                <p>The website should feel intuitive to navigate around. For any type of feedback, reach us at LPHUB Discord server.</p>
                <p>By using LPHUB, you agree that you have read the 'Leaderboard Rules' and the 'About LPHUB' pages.</p>
            </section>
        </main>
    );
};

export default Homepage;