2023-11-09 22:49:29 +03:00

16 lines
425 B
TypeScript

import * as React from 'react';
type Props = {
readonly children?: React.ReactNode;
};
export function Header({ children }: Props) {
return (
<header className="sticky top-0 flex h-16 w-full justify-center border-b border-slate-100 bg-white bg-opacity-80 backdrop-blur-sm">
<div className="m-0 flex w-full items-center justify-between px-5 lg:w-[1104px]">
{children}
</div>
</header>
);
}