Skip to content

Commit

Permalink
deps: depend on datalayer packages
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Jan 14, 2024
1 parent fbac679 commit 61fbf1f
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions src/tabs/AboutTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,22 @@ const AboutTab = (props: Props): JSX.Element => {
<Box>
<Text>Datalayer provides features to other Datalayer packages. It also contains base application classes and configuration inherited by other projects.</Text>
</Box>
<Box mt={3} style={{width: 350}}>
{!egg ?
<img src="https://assets.datalayer.tech/releases/datalayer-0.3.0-black-snake_1024.png" onClick={e => setEgg(true)}/>
:
<ECharlesIcon size={300} onClick={e => setEgg(false)}/>
}
<Box mt={3}>
{!egg ? (
<img
src="https://assets.datalayer.tech/releases/datalayer-0.3.0-black-snake_1024.png"
onClick={e => setEgg(true)}
style={{ width: '100%' }}
/>
) : (
<ECharlesIcon size={300} onClick={e => setEgg(false)} />
)}
</Box>
<Box>
<Link href="https://datalayer.tech/docs/releases/0.3.0-black-snake" target="_blank">
<Link
href="https://datalayer.tech/docs/releases/0.3.0-black-snake"
target="_blank"
>
<Text as="h4">Datalayer 0.3.0 Black Snake Release</Text>
</Link>
</Box>
Expand Down

0 comments on commit 61fbf1f

Please sign in to comment.