diff options
Diffstat (limited to 'thallium-frontend/src/pages/LandingPage.tsx')
| -rw-r--r-- | thallium-frontend/src/pages/LandingPage.tsx | 32 |
1 files changed, 21 insertions, 11 deletions
diff --git a/thallium-frontend/src/pages/LandingPage.tsx b/thallium-frontend/src/pages/LandingPage.tsx index 526f590..10e6b2f 100644 --- a/thallium-frontend/src/pages/LandingPage.tsx +++ b/thallium-frontend/src/pages/LandingPage.tsx @@ -2,17 +2,27 @@ import Card from "../components/Card"; const LandingPage = () => { return ( - <Card title="Welcome to Thallium"> - <p> - Thallium is a project being developed by Owl Corp. - </p> - <p> - Owl Corp team members can track development progress on the <a href="https://github.com/owl-corp/thallium">GitHub repository</a>. - </p> - <p> - LLAP. 🖖 - </p> - </Card> + <> + <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> + </> ); }; |