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