💩(frontend) introduce an official footer

Based on Florian's feedbacks, this is mandatory as the project is
getting attention.

Bad code, needs a refactor.
This commit is contained in:
lebaudantoine
2024-12-03 00:13:48 +01:00
committed by aleb_the_flash
parent 819d3784f7
commit e7e7bb0d09
13 changed files with 402 additions and 26 deletions
+2
View File
@@ -3,10 +3,12 @@ import { PanelId } from '@/features/rooms/livekit/hooks/useSidePanel'
type State = {
showHeader: boolean
showFooter: boolean
activePanelId: PanelId | null
}
export const layoutStore = proxy<State>({
showHeader: false,
showFooter: false,
activePanelId: null,
})