diff options
| author | 2024-08-17 02:06:08 +0100 | |
|---|---|---|
| committer | 2024-08-17 02:06:08 +0100 | |
| commit | aaf59f1a5f453e5d88e287ee2ddcda590f509016 (patch) | |
| tree | 1e4163c25d6f9d0afd504d6c527aa1750e097765 | |
| parent | Add error page (diff) | |
Remove Header from LandingPage
| -rw-r--r-- | thallium-frontend/src/pages/LandingPage.tsx | 52 |
1 files changed, 11 insertions, 41 deletions
diff --git a/thallium-frontend/src/pages/LandingPage.tsx b/thallium-frontend/src/pages/LandingPage.tsx index 3219165..da67b42 100644 --- a/thallium-frontend/src/pages/LandingPage.tsx +++ b/thallium-frontend/src/pages/LandingPage.tsx @@ -1,48 +1,18 @@ -import styled from 'styled-components'; - import Card from '../components/Card'; -const Header = styled.header` - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 2rem; - - img { - width: 64px; - height: 64px; - } - - h1 { - margin: 0; - margin-left: 1rem; - } -`; - - const LandingPage = () => { return ( - <> - <Header> - <img src="icon.svg" alt="Thallium logo" /> - <h1> - Thallium - </h1> - </Header> - <div> - <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> - </div> - </> + <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> ); }; |