summaryrefslogtreecommitdiff
path: root/frontend/src/components/VNInterface.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/VNInterface.tsx')
-rw-r--r--frontend/src/components/VNInterface.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/frontend/src/components/VNInterface.tsx b/frontend/src/components/VNInterface.tsx
index be71d27..318a9b9 100644
--- a/frontend/src/components/VNInterface.tsx
+++ b/frontend/src/components/VNInterface.tsx
@@ -1,4 +1,5 @@
import React, { useEffect } from 'react'
+import { Link } from 'react-router-dom'
import { useStore } from '@nanostores/react'
import {
isStandbyStore,
@@ -100,6 +101,18 @@ export function VNInterface({ onLogout }: VNInterfaceProps) {
{isStandby ? 'STDBY' : 'LIVE'}
</span>
</div>
+ <div className="status-item">
+ <Link to="/daemons" style={{ color: '#66ccff', textDecoration: 'none', display: 'flex', alignItems: 'center', gap: '4px' }}>
+ <span className="info-label">Mesh:</span>
+ <span className="info-value">Daemons</span>
+ </Link>
+ </div>
+ <div className="status-item">
+ <Link to="/contracts" style={{ color: '#66ccff', textDecoration: 'none', display: 'flex', alignItems: 'center', gap: '4px' }}>
+ <span className="info-label">View:</span>
+ <span className="info-value">Contracts</span>
+ </Link>
+ </div>
</div>
</div>
</div>