Initial public release

This commit is contained in:
Bohdan Triapitsyn
2025-12-07 19:32:53 +02:00
commit 4b2edf7318
319 changed files with 81600 additions and 0 deletions
@@ -0,0 +1,13 @@
import React from 'react';
import { OpenChamberLogo } from '@/components/ui/OpenChamberLogo';
const ChatEmptyState: React.FC = () => {
return (
<div className="flex items-center justify-center min-h-full w-full">
<OpenChamberLogo width={140} height={140} className="opacity-20" isAnimated />
</div>
);
};
export default React.memo(ChatEmptyState);