Skip to content

Commit dc7c6bf

Browse files
committed
add vercel logo
1 parent acab538 commit dc7c6bf

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,7 @@ Bitflow is maintained by [OpenPatch](https://openpatch.org), an organization for
6565
Special thanks to the [University of Duisburg-Essen](https://uni-due.de) and the [Chair of Computer Science Education](https://www.ddi.wiwi.uni-due.de/) for supporting the development of this library.
6666

6767
Another huge shoutout to [webkid](https://webkid.io/) for developing and maintaining [React Flow](https://github.com/wbkd/react-flow/). This library is the core of Bitflow.
68+
69+
We also like to thank [Vercel](https://vercel.com) for hosting our documentation.
70+
71+
[![Vercel](https://www.datocms-assets.com/31049/1618983297-powered-by-vercel.svg)](https://vercel.com?utm_source=openpatch&utm_campaign=oss)
Lines changed: 6 additions & 0 deletions
Loading

website/src/components/NavLayout.tsx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import { Footer, Nav } from "@openpatch/patches";
1+
import { Box, Footer, Nav } from "@openpatch/patches";
2+
import Link from "next/link";
3+
import Image from "next/image";
24
import { FC, Fragment, PropsWithChildren } from "react";
35
import { Logo } from "./Logo";
46

@@ -29,6 +31,17 @@ export const NavLayout: FC<PropsWithChildren<NavLayoutProps>> = ({
2931
]}
3032
></Nav>
3133
{children}
34+
<Box mb="medium" textAlign="center">
35+
<Link href="https://vercel.com?utm_source=openpatch&utm_campaign=oss">
36+
<a>
37+
<Image
38+
src="/static/powered-by-vercel-black.svg"
39+
width={212}
40+
height={44}
41+
/>
42+
</a>
43+
</Link>
44+
</Box>
3245
<Footer
3346
links={[
3447
{

0 commit comments

Comments
 (0)