diff --git a/packages/web/components/elements/images/OmnivoreNameLogo.tsx b/packages/web/components/elements/images/OmnivoreNameLogo.tsx index f32804b9b..80378280d 100644 --- a/packages/web/components/elements/images/OmnivoreNameLogo.tsx +++ b/packages/web/components/elements/images/OmnivoreNameLogo.tsx @@ -20,6 +20,26 @@ type OmnivoreLogoProps = { strokeColor: string } +export function OmnivoreSmallLogo(props: OmnivoreLogoProps): JSX.Element { + return ( + + + + ) +} + export function OmnivoreLogoIcon(props: OmnivoreLogoProps): JSX.Element { return ( (null) - const [labelsTarget, setLabelsTarget] = - useState(undefined) + const [labelsTarget, setLabelsTarget] = useState( + undefined + ) const [showAddLinkModal, setShowAddLinkModal] = useState(false) const [showEditTitleModal, setShowEditTitleModal] = useState(false) @@ -772,7 +773,7 @@ function HomeFeedGrid(props: HomeFeedContentProps): JSX.Element { {props.isValidating && props.items.length == 0 && } - + {/* - + */} - - - - - + {/* These will display/hide depending on breakpoints */} + + + {/* This spacer is put in to push library content down below the fixed header height. */} + + + + + ) +} + +function SmallHeaderLayout(props: LibraryHeaderProps): JSX.Element { + return ( + + + + + ) +} + +function MenuHeaderButton(): JSX.Element { + return ( + + + + + ) +} + type SearchBoxProps = { searchTerm: string | undefined applySearchQuery: (searchQuery: string) => void @@ -272,6 +331,7 @@ function ControlButtonBox(props: ControlButtonBoxProps): JSX.Element { }, }} > +