Skip to content

Commit

Permalink
fix: Core brand fixes (#369)
Browse files Browse the repository at this point in the history
* Hot fixes for a release

* Don't index non-production deployments

* Don't index non-production deployments

---------

Co-authored-by: Tanay Pant <tanaypantprotonmail.com>
Co-authored-by: louis-md <[email protected]>
  • Loading branch information
tanay1337 and louis-md authored Feb 21, 2024
1 parent 6248bbe commit f366c77
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
Binary file added assets/core-brands.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.1.0",
"version": "4.1.1",
"description": "Safe docs",
"scripts": {
"build": "next build",
Expand Down
1 change: 0 additions & 1 deletion pages/apps-sdk-get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ If the SSL certificate provided by `react-scripts` isn't valid, it's required to

Safe offers a react components package if you are creating your Safe App from scratch. This helps with a near-native look while enabling developers to use their branding in the Safe Apps.

* [Check all available components in the storybook](https://components.safe.global)
* [Check UI Kit repository](https://github.com/safe-global/safe-react-components)

## Example app
Expand Down
2 changes: 2 additions & 0 deletions pages/what-is-safe.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ description: Everything you need to know to start building on Safe.

Safe is at the forefront of modular smart account infrastructure, paving the way for developers to create various applications and wallets.

![Overview of Safe Core and its components.](../assets/core-brands.png)

## Safe\{Core\} AA SDK

The [Safe\{Core\} Account Abstraction SDK](./sdk-overview.md) is a set of developer kits that help integrate Safe with different external service providers. The SDK offers developers the ability to abstract the complexity that comes with operating a smart contract account.
Expand Down
13 changes: 11 additions & 2 deletions theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,18 @@ const config: DocsThemeConfig = {
backToTop: true
},
feedback: {
useLink: () => { return 'https://github.com/safe-global/safe-docs/issues/new?assignees=&labels=nextra-feedback&projects=&template=nextra-feedback.yml&title=%5BFeedback%5D+' }
useLink: () => {
return 'https://github.com/safe-global/safe-docs/issues/new?assignees=&labels=nextra-feedback&projects=&template=nextra-feedback.yml&title=%5BFeedback%5D+'
}
},
head: <link rel='icon' type='image/png' sizes='32x32' href='/favicon.png' />,
head: (
<>
{process.env.NEXT_PUBLIC_IS_PRODUCTION !== 'true' && (
<meta name='robots' content='noindex' />
)}
<link rel='icon' type='image/png' sizes='32x32' href='/favicon.png' />
</>
),
useNextSeoProps: () => {
const { asPath } = useRouter()
if (asPath !== '/') {
Expand Down

0 comments on commit f366c77

Please sign in to comment.