diff --git a/src/layout/components/useRenderLayout.tsx b/src/layout/components/useRenderLayout.tsx index 1110cd8..5217264 100644 --- a/src/layout/components/useRenderLayout.tsx +++ b/src/layout/components/useRenderLayout.tsx @@ -297,10 +297,78 @@ export const useRenderLayout = () => { ) } + const NewTopLeft = () => { + return ( + <> +
+ {logo.value ? : undefined} + + +
+
+ +
+ + {tagsView.value ? ( + + ) : undefined} + + + +
+
+ + ) + } + return { renderClassic, renderTopLeft, renderTop, - renderCutMenu + renderCutMenu, + NewTopLeft } }