Update sponsorware.tsx
This commit is contained in:
parent
a081840aa9
commit
334f1b4de8
1 changed files with 19 additions and 4 deletions
|
@ -1,6 +1,7 @@
|
|||
import styled from 'styles'
|
||||
import { getSession, signin, signout, useSession } from 'next-auth/client'
|
||||
import { GetServerSideProps } from 'next'
|
||||
import Link from 'next/link'
|
||||
import React from 'react'
|
||||
|
||||
export default function Sponsorware(): JSX.Element {
|
||||
|
@ -15,8 +16,15 @@ export default function Sponsorware(): JSX.Element {
|
|||
>
|
||||
<h1>tldraw (is sponsorware)</h1>
|
||||
<p>
|
||||
Hey, thanks for visiting <a href="https://tldraw.com/">tldraw</a>, a tiny little drawing
|
||||
app by <a href="https://twitter.com/steveruizok">steveruizok</a>.
|
||||
Hey, thanks for visiting <Link href="/">tldraw</Link>, a tiny little drawing app by{' '}
|
||||
<a
|
||||
target="_blank"
|
||||
rel="noreferrer nofollow noopener"
|
||||
href="https://twitter.com/steveruizok"
|
||||
>
|
||||
steveruizok
|
||||
</a>{' '}
|
||||
and friends .
|
||||
</p>
|
||||
<video autoPlay muted playsInline onClick={(e) => e.currentTarget.play()}>
|
||||
<source src="images/hello.mp4" type="video/mp4" />
|
||||
|
@ -47,8 +55,15 @@ export default function Sponsorware(): JSX.Element {
|
|||
Signed in as {session?.user?.name} ({session?.user?.email}), but it looks like
|
||||
you're not yet a sponsor.
|
||||
<br />
|
||||
Something wrong? Try <a href="/">reloading the page</a> or DM me on{' '}
|
||||
<a href="https://twitter.com/steveruizok">Twitter</a>.
|
||||
Something wrong? Try <Link href="/">reloading the page</Link> or DM me on{' '}
|
||||
<a
|
||||
target="_blank"
|
||||
rel="noreferrer nofollow noopener"
|
||||
href="https://twitter.com/steveruizok"
|
||||
>
|
||||
Twitter
|
||||
</a>
|
||||
.
|
||||
</Detail>
|
||||
</>
|
||||
) : (
|
||||
|
|
Loading…
Reference in a new issue