add admin mode bar on top of page

This commit is contained in:
Brandon Egger
2023-05-22 22:15:30 -05:00
parent e6fdbf714d
commit a69e32ee11
2 changed files with 50 additions and 27 deletions

View File

@ -0,0 +1,20 @@
const AdminBarLayout = ({
actions,
children,
}: {
actions: JSX.Element | JSX.Element[];
children: JSX.Element | JSX.Element[];
}) => {
return (
<div className="relative">
<div className="sticky left-0 right-0 top-[71px] z-10 mx-auto mb-8 mt-[15px] flex max-w-4xl flex-row rounded-xl border border-neutral-600 bg-red-300 drop-shadow-xl">
<h1 className="rounded-lg px-4 py-2 font-semibold text-black">
Admin Mode
</h1>
</div>
{children}
</div>
);
};
export { AdminBarLayout };