update assets link in readme

<!-- Thank you for ss in the Title above ^ -->

## Description ✍️
<!-- Please fill this se-->
<!-- Describe the changes from a user's perspective -->
This PR fixes a broken link in assets path for brand images.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2794
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
GitOrigin-RevId: 823035148e58c8806366dc2048d237e6cb733420
This commit is contained in:
Praveen Durairaju 2021-11-17 16:23:35 +05:30 committed by hasura-bot
parent 81bf0e5429
commit d4ca0bcc27

View File

@ -187,19 +187,19 @@ application/website etc. We'd be thrilled if you add the "Powered by Hasura"
badge to your applications built using Hasura. ❤️
<div style="display: flex;">
<img src="assets/brand/powered_by_hasura_blue.svg" width="150px"/>
<img src="assets/brand/powered_by_hasura_white.svg" width="150px"/>
<img src="assets/brand/powered_by_hasura_primary_darkbg.svg" width="150px"/>
<img src="assets/brand/powered_by_hasura_primary_lightbg.svg" width="150px"/>
</div>
```html
<!-- For light backgrounds -->
<a href="https://hasura.io">
<img width="150px" src="https://graphql-engine-cdn.hasura.io/img/powered_by_hasura_blue.svg" />
<img width="150px" src="https://graphql-engine-cdn.hasura.io/img/powered_by_hasura_primary_darkbg.svg" />
</a>
<!-- For dark backgrounds -->
<a href="https://hasura.io">
<img width="150px" src="https://graphql-engine-cdn.hasura.io/img/powered_by_hasura_white.svg" />
<img width="150px" src="https://graphql-engine-cdn.hasura.io/img/powered_by_hasura_primary_lightbg.svg" />
</a>
```