feat: retro Claude ekip konsolunu kur

This commit is contained in:
2026-03-16 23:38:15 +03:00
parent 9294028fb2
commit 68d5c2afea
32 changed files with 5207 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
export default function ShellFrame({ children }) {
return (
<div className="shell-frame">
<div className="shell-frame__bezel" />
<div className="shell-frame__screen">
<div className="shell-frame__scanlines" />
<div className="shell-frame__noise" />
<div className="shell-frame__content">{children}</div>
</div>
</div>
);
}