diff options
| author | 2024-08-19 17:06:26 +0100 | |
|---|---|---|
| committer | 2024-08-19 17:06:26 +0100 | |
| commit | 9322202b0fe1e249d4cb7e034f5a232df880fc05 (patch) | |
| tree | d8d7c08144a8b98b0467ee5ad094a9600a1dc50a /thallium-frontend/src | |
| parent | Add Voucher Validator component (diff) | |
Add VoucherValidator to landing page
Diffstat (limited to 'thallium-frontend/src')
| -rw-r--r-- | thallium-frontend/src/pages/LandingPage.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/thallium-frontend/src/pages/LandingPage.tsx b/thallium-frontend/src/pages/LandingPage.tsx index 10e6b2f..823f2aa 100644 --- a/thallium-frontend/src/pages/LandingPage.tsx +++ b/thallium-frontend/src/pages/LandingPage.tsx @@ -1,4 +1,5 @@ import Card from "../components/Card"; +import VoucherValidator from "../components/VoucherValidator"; const LandingPage = () => { return ( @@ -22,6 +23,8 @@ const LandingPage = () => { You can keep track of the development progress on the <a href="https://github.com/owl-corp/thallium">GitHub repository</a>. </p> </Card> + + <VoucherValidator /> </> ); }; |