aboutsummaryrefslogtreecommitdiffstats
path: root/thallium-frontend/src/pages/LandingPage.tsx
blob: 94562640e885e7e2b39ee22e3827e5602b47147f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import Card from "../components/Card";
import VoucherValidator from "../components/VoucherValidator";
import MaxWidthContainer from "../components/MaxWidthContainer";

const LandingPage = () => {
    return (
        <MaxWidthContainer>
            <Card title="Welcome to Thallium">
                <p>
                    Thallium is a project being developed by Owl Corp.
                </p>
                <p>
                    LLAP. 🖖
                </p>
            </Card>
            <Card title="What is Thallium?" seamless>
                <p>
                    Thallium is a giveaway claiming tool for communities backed by Printful.
                </p>
            </Card>

            <Card title="More Information">
                <p>
                    You can keep track of the development progress on the <a href="https://github.com/owl-corp/thallium">GitHub repository</a>.
                </p>
            </Card>

            <VoucherValidator />
        </MaxWidthContainer>
    );
};

export default LandingPage;