add dokka link to docs page

This commit is contained in:
Cloudburst 2022-09-01 14:35:14 +02:00 committed by GitHub
parent ae6b4bb291
commit ab158db7f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 1 deletions

View File

@ -8,6 +8,15 @@ const DocsPage = () => {
return <Layout>
<div className="flex items-center w-full flex-col">
<article className="card bg-base-200 shadow-xl mx-10 mb-5 w-full md:w-2/3">
<div className="card-body">
<h2 className="card-title">Dokka</h2>
<p>Basically javadoc</p>
<div className="card-actions justify-end">
<a href="/dokka/" className="btn btn-primary">View</a>
</div>
</div>
</article>
<StaticQuery
query={graphql`
query {
@ -51,4 +60,4 @@ export function Head() {
<meta name="twitter:card" content="summary_large_image" />
</>
)
}
}