mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-21 14:47:41 +01:00
f715f70f9e
Co-authored-by: Jip Frijlink <JipFr@users.noreply.github.com>
27 lines
747 B
TypeScript
27 lines
747 B
TypeScript
import { Banner } from "@/components/Banner";
|
|
import { useBannerSize } from "@/hooks/useBanner";
|
|
import { useIsOnline } from "@/hooks/usePing";
|
|
import { ReactNode } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export function Layout(props: { children: ReactNode }) {
|
|
const { t } = useTranslation();
|
|
const isOnline = useIsOnline();
|
|
const bannerSize = useBannerSize();
|
|
|
|
return (
|
|
<div>
|
|
<div className="fixed inset-x-0 z-[1000]">
|
|
{!isOnline ? <Banner type="error">{t("errors.offline")}</Banner> : null}
|
|
</div>
|
|
<div
|
|
style={{
|
|
paddingTop: `${bannerSize}px`,
|
|
}}
|
|
className="flex min-h-screen flex-col"
|
|
>
|
|
{props.children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|