mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-23 15:07:43 +01:00
0c57aa1a73
Co-authored-by: Jip Frijlink <JipFr@users.noreply.github.com> Co-authored-by: James Hawkins <jhawki2005@gmail.com>
20 lines
478 B
TypeScript
20 lines
478 B
TypeScript
import { Transition } from "@/components/Transition";
|
|
import { Helmet } from "react-helmet";
|
|
|
|
export function Overlay(props: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<body data-no-scroll />
|
|
</Helmet>
|
|
<div className="fixed inset-0 z-[99999]">
|
|
<Transition
|
|
animation="fade"
|
|
className="absolute inset-0 bg-[rgba(8,6,18,0.85)]"
|
|
isChild
|
|
/>
|
|
{props.children}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|