Skip to content

Commit

Permalink
feat(inkdrop): add a video
Browse files Browse the repository at this point in the history
  • Loading branch information
craftzdog committed May 10, 2022
1 parent 34fe18e commit 866d467
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions pages/works/inkdrop.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
import { Container, Badge, Link, List, ListItem } from '@chakra-ui/react'
import {
Container,
Badge,
Link,
List,
ListItem,
AspectRatio
} from '@chakra-ui/react'
import { ExternalLinkIcon } from '@chakra-ui/icons'
import { Title, WorkImage, Meta } from '../../components/work'
import P from '../../components/paragraph'
Expand All @@ -12,7 +19,7 @@ const Work = () => (
</Title>
<P>
A Markdown note-taking app with 100+ plugins, cross-platform and
encrypted data sync support. The life-time revenue is more than $200k.
encrypted data sync support. The life-time revenue is more than $300k.
</P>
<List ml={4} my={4}>
<ListItem>
Expand Down Expand Up @@ -40,6 +47,15 @@ const Work = () => (

<WorkImage src="/images/works/inkdrop_01.png" alt="Inkdrop" />
<WorkImage src="/images/works/inkdrop_02.png" alt="Inkdrop" />
<AspectRatio maxW="640px" ratio={1.7} my={4}>
<iframe
src="https://www.youtube.com/embed/-qBavwqc_mY"
title="YouTube video player"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
></iframe>
</AspectRatio>
</Container>
</Layout>
)
Expand Down

0 comments on commit 866d467

Please sign in to comment.