This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Nebari Branding | |
| Per-deployment branding. All Helm snippets are ArgoCD `Application` patches — merge the | |
| `spec.source.helm.values` block into the app manifest under `apps/apps/<app>.yaml`. | |
| Images can be absolute `http(s)` URLs, root-relative paths, or base64 `data:` URIs | |
| (`data:image/png;base64,...`). The pack frontends sanitize these: `javascript:`, | |
| `data:text/html`, and non-base64 `data:` URIs are rejected. | |
| ## Keycloak |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // some-component.tsx | |
| import React, { useEffect, useState } from 'react'( | |
| import useDocumentApi from '../../hooks/useDocumentApi'; | |
| import useAuth from '../../hooks/useAuth'; | |
| export const SomeComponent = (): React.ReactElement => { | |
| const { loading, documents } = useDocumentApi(); | |
| const { isSignedIn } = useAuth(); | |
| const [data, setData] = useState<TableData[]>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // some-component.tsx | |
| import React, { useEffect, useState } from 'react'( | |
| import useDocumentApi from '../../hooks/useDocumentApi'; | |
| import useAuth from '../../hooks/useAuth'; | |
| export const SomeComponent = (): React.ReactElement => { | |
| const { getDocuments, loading, documents } = useDocumentApi(); | |
| const { isSignedIn } = useAuth(); | |
| const [data, setData] = useState<TableData[]>(); |