Vercel Sponsorship (#221)

* feat: add Vercel sponsorship requirements

* chore: fix syntax error
This commit is contained in:
John Letey
2021-02-08 06:53:49 +00:00
committed by GitHub
parent 736b888608
commit 5d945372d4
3 changed files with 19 additions and 1 deletions

View File

@@ -180,3 +180,9 @@ Join the community on our [Discord](https://discord.gg/EH6nSts) server!
## License
Lucide is licensed under the [ISC License](https://github.com/lucide-icons/lucide/blob/master/LICENSE).
<p align="center">
<a href="https://vercel.com?utm_source=lucide&utm_campaign=oss">
<img src="./site/public/vercel.svg" alt="Powered by Vercel" width="200" />
</a>
</p>

6
site/public/vercel.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -79,7 +79,13 @@ const Layout = ({ children }) => {
</Flex>
<Flex margin="0 auto" direction="column" maxW="1250px" px={8}>
{children}
<Divider marginTop={4} marginBottom={8} />
<Divider marginBottom={8} />
<p style={{ alignSelf: "center" }}>
<a href="https://vercel.com?utm_source=lucide&utm_campaign=oss">
<img src="/vercel.svg" alt="Powered by Vercel" width="200" />
</a>
</p>
<br />
</Flex>
</Box>
);