32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
'use client';
|
|
|
|
import { Zap, Radio } from 'lucide-react';
|
|
|
|
const LivePage = () => {
|
|
return (
|
|
<div className="p-4 md:p-6 space-y-4">
|
|
{/* Page Header */}
|
|
<header className="pb-3 border-b border-slate-800">
|
|
<div className="flex items-center gap-2">
|
|
<Zap className="w-5 h-5 text-purple-400" />
|
|
<div>
|
|
<h1 className="text-lg font-semibold text-white">Live</h1>
|
|
<p className="text-xs text-gray-400">Real-time testing and experimentation</p>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
{/* Live Testing Placeholder */}
|
|
<div className="p-6 bg-slate-900/50 backdrop-blur-sm border border-slate-700 rounded-lg text-center">
|
|
<div className="w-12 h-12 mx-auto mb-3 flex items-center justify-center bg-slate-800 rounded-lg">
|
|
<Radio className="w-6 h-6 text-gray-500" />
|
|
</div>
|
|
<h2 className="text-sm font-medium text-white mb-1">Live Testing Interface</h2>
|
|
<p className="text-xs text-gray-400">Component will be implemented here</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LivePage;
|