mirror of
https://github.com/gethomepage/homepage.git
synced 2025-06-23 15:30:32 -04:00
10 lines
285 B
JavaScript
10 lines
285 B
JavaScript
export default function Container({ children, className = "" }) {
|
|
return (
|
|
<div>
|
|
{children}
|
|
<div className={`absolute top-0 right-0 bottom-0 left-0 overflow-clip pointer-events-none ${className}`} />
|
|
<div className="h-[68px] overflow-clip" />
|
|
</div>
|
|
);
|
|
}
|