Skip to content

Commit

Permalink
Remove Header from LandingPage
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Aug 17, 2024
1 parent 586045d commit aaf59f1
Showing 1 changed file with 11 additions and 41 deletions.
52 changes: 11 additions & 41 deletions thallium-frontend/src/pages/LandingPage.tsx
Original file line number Diff line number Diff line change
@@ -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>
);
};

Expand Down

0 comments on commit aaf59f1

Please sign in to comment.