mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-05-21 23:24:44 +02:00
15 lines
560 B
TypeScript
15 lines
560 B
TypeScript
|
|
import { Radio } from 'lucide-react'
|
||
|
|
|
||
|
|
export default function Mesh() {
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col items-center justify-center h-[60vh] text-center">
|
||
|
|
<div className="w-16 h-16 rounded-full bg-bg-card border border-border flex items-center justify-center mb-6">
|
||
|
|
<Radio size={32} className="text-slate-500" />
|
||
|
|
</div>
|
||
|
|
<h2 className="text-xl font-semibold text-slate-300 mb-2">Mesh</h2>
|
||
|
|
<p className="text-slate-500 max-w-md">
|
||
|
|
Topology graph and geographic map coming in Phase 6
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|