Files
stats/apps/public/src/app/(static)/layout.tsx
Carl-Gerhard Lindesvärd d3a57178b6 public: hero improvements
2024-03-14 07:00:11 +01:00

21 lines
497 B
TypeScript

import { Navbar } from '../navbar';
interface Props {
children: React.ReactNode;
}
export default function Layout({ children }: Props) {
return (
<>
<Navbar darkText />
<div
className="opacity-50 w-full h-screen text-blue-950 bg-[radial-gradient(circle_at_2px_2px,#D9DEF6_2px,transparent_0)] absolute top-0 left-0 right-0 z-0"
style={{
backgroundSize: '70px 70px',
}}
/>
<div className="relative">{children}</div>
</>
);
}