|
@@ -1570,6 +1570,13 @@ export function Layout() {
|
|
|
<span className="material-icons-outlined text-xl">article</span>
|
|
<span className="material-icons-outlined text-xl">article</span>
|
|
|
View Logs
|
|
View Logs
|
|
|
</button>
|
|
</button>
|
|
|
|
|
+ <button
|
|
|
|
|
+ onClick={() => navigate('/wifi-setup')}
|
|
|
|
|
+ className="flex items-center gap-3 w-full px-3 py-2 text-sm rounded-md hover:bg-accent transition-colors"
|
|
|
|
|
+ >
|
|
|
|
|
+ <span className="material-icons-outlined text-xl">wifi</span>
|
|
|
|
|
+ WiFi Setup
|
|
|
|
|
+ </button>
|
|
|
<Separator className="my-1" />
|
|
<Separator className="my-1" />
|
|
|
<button
|
|
<button
|
|
|
onClick={handleRestart}
|
|
onClick={handleRestart}
|
|
@@ -1648,6 +1655,16 @@ export function Layout() {
|
|
|
<span className="material-icons-outlined text-xl">article</span>
|
|
<span className="material-icons-outlined text-xl">article</span>
|
|
|
View Logs
|
|
View Logs
|
|
|
</button>
|
|
</button>
|
|
|
|
|
+ <button
|
|
|
|
|
+ onClick={() => {
|
|
|
|
|
+ navigate('/wifi-setup')
|
|
|
|
|
+ setIsMobileMenuOpen(false)
|
|
|
|
|
+ }}
|
|
|
|
|
+ className="flex items-center gap-3 w-full px-3 py-2 text-sm rounded-md hover:bg-accent transition-colors"
|
|
|
|
|
+ >
|
|
|
|
|
+ <span className="material-icons-outlined text-xl">wifi</span>
|
|
|
|
|
+ WiFi Setup
|
|
|
|
|
+ </button>
|
|
|
<Separator className="my-1" />
|
|
<Separator className="my-1" />
|
|
|
<button
|
|
<button
|
|
|
onClick={() => {
|
|
onClick={() => {
|