Skip to content

Commit

Permalink
docs(theme): add powered by vercel to docs footer & readme
Browse files Browse the repository at this point in the history
  • Loading branch information
steebchen committed Jun 20, 2023
1 parent d3e5ac3 commit 1fb2df2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ Check out the [advanced contributing guide](./CONTRIBUTING.md).
## Security

If you have a security issue to report, please contact us at [[email protected]](mailto:[email protected]?subject=[GitHub]%20Prisma%20Security%20Report%20Go&[email protected])

## Thanks

[![Powered By Vercel](https://images.ctfassets.net/e5382hct74si/78Olo8EZRdUlcDUFQvnzG7/fa4cdb6dc04c40fceac194134788a0e2/1618983297-powered-by-vercel.svg)](https://vercel.com/?utm_source=prisma-client-go&utm_campaign=oss)
26 changes: 20 additions & 6 deletions docs/theme.config.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Image from 'next/image'
import { DocsThemeConfig } from 'nextra-theme-docs'

export default {
Expand All @@ -13,12 +14,25 @@ export default {
docsRepositoryBase: 'https://github.com/steebchen/prisma-client-go/tree/main/docs',
footer: {
text: (
<span>
All source code and content licensed under&nbsp;
<a href="https://github.com/steebchen/prisma-client-go/blob/main/LICENSE" target="_blank">
Apache 2.0
</a>
</span>
<>
<div style={{ width: '100%' }}>
All source code and content licensed under&nbsp;
<a href="https://github.com/steebchen/prisma-client-go/blob/main/LICENSE" target="_blank">
Apache 2.0
</a>
</div>

<div>
<a href="https://vercel.com/?utm_source=prisma-client-go&utm_campaign=oss" target="_blank">
<Image
alt="Powered by Vercel"
src="https://images.ctfassets.net/e5382hct74si/78Olo8EZRdUlcDUFQvnzG7/fa4cdb6dc04c40fceac194134788a0e2/1618983297-powered-by-vercel.svg"
width="212"
height="44"
/>
</a>
</div>
</>
),
},
useNextSeoProps() {
Expand Down

0 comments on commit 1fb2df2

Please sign in to comment.