Skip to content

Instantly share code, notes, and snippets.

View jbouder's full-sized avatar

Johnny Bouder jbouder

View GitHub Profile
@jbouder
jbouder / nebari-branding.txt
Last active June 17, 2026 12:59
Nebari Branding
## Keycloak
1. Login to Admin Creds
2. Navigate to Nebari Realm
3. Go to Realm Settings
4. Update the Display Name
## Nebari Landing
spec:
source:
helm:
// 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[]>();
// 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[]>();