From d7033d256e9b29efb606d130a64e29decb26714b Mon Sep 17 00:00:00 2001
From: John <john.c.demian@gmail.com>
Date: Mon, 3 Feb 2025 14:07:49 +0200
Subject: [PATCH] added restart command to CLI

---
 src/components/NavigationDocs.jsx | 18 +++++++++---------
 src/pages/how-to/cli.mdx          |  9 +++++++++
 2 files changed, 18 insertions(+), 9 deletions(-)

diff --git a/src/components/NavigationDocs.jsx b/src/components/NavigationDocs.jsx
index f1dd91cb..23d33781 100644
--- a/src/components/NavigationDocs.jsx
+++ b/src/components/NavigationDocs.jsx
@@ -206,17 +206,17 @@ export const docsNavigation = [
         
     },
     
-    {
-     title: 'USE CASES',
-     links: [
-         { title: 'Serverless and NetBird', href: '/how-to/netbird-on-faas' },
-         { title: 'Routing peers and Kubernetes', href: '/how-to/routing-peers-and-kubernetes'},
-         { title: 'NetBird Client on AWS ECS', href: '/how-to/examples'},
-         { title: 'Netbird on Mikrotik Router', href: '/how-to/client-on-mikrotik-router' },
-     ],
+//     {
+//      title: 'USE CASES',
+//      links: [
+//          { title: 'Serverless and NetBird', href: '/how-to/netbird-on-faas' },
+//          { title: 'Routing peers and Kubernetes', href: '/how-to/routing-peers-and-kubernetes'},
+//          { title: 'NetBird Client on AWS ECS', href: '/how-to/examples'},
+//          { title: 'Netbird on Mikrotik Router', href: '/how-to/client-on-mikrotik-router' },
+//      ],
  
  
- },
+//  },
  {
   title: 'SELF-HOST NETBIRD',
   links: [
diff --git a/src/pages/how-to/cli.mdx b/src/pages/how-to/cli.mdx
index dd5e2a36..e4d4fb64 100644
--- a/src/pages/how-to/cli.mdx
+++ b/src/pages/how-to/cli.mdx
@@ -440,6 +440,15 @@ The minimal form of running the command is:
 sudo netbird service start
 ```
 
+### service restart
+Restarts the daemon service
+#### Usage
+The minimal form of running the command is:
+```shell
+sudo netbird service restart
+```
+
+
 ### service stop
 Stops the daemon service
 #### Usage