mirror of
https://github.com/AderKonstantin/aderktech-chronark.com-.git
synced 2025-06-08 21:58:41 +03:00
10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
export default function ProjectsLayout({
|
|
children,
|
|
}: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="relative min-h-screen bg-gradient-to-tl from-zinc-900 via-zinc-400/10 to-zinc-900 ">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|