+  
+    About
+    
+      This wonderful website, made with ❤ by
+      
+        Corentin Thomasset
+      ,
+      aggregates useful tools for developer and people working in IT. If you find it usefull, please fell free to share
+      it to people you think may find it usefull too and dont forget to pin it in your shortcut bar !
+    
+    
+      IT Tools is opensource (under the MIT license) and free, and will always be, but it cost me money to host and
+      renew the domain name, if you want to support my work, and encourage me to add more tools, please consider
+      supporting by
+      
+        sponsoring me
+      . 
+    
+
+    Technologies
+    
+      IT Tools is made in Vue JS (vue 3) with the the naive-ui component library and is hosted and continuously deployed by Vercel. Third party opensource libraries are used in some tools, you may find the complete list in the 
+      
+        package.json
+       file of the repository.
+    
+
+    Found a bug ? A tool is missing ?
+    
+      If you need a tool that is currently not present here, and you think can be relevant, you are welcome to submit a feature request in the 
+      
+        issues section 
+       in the github repository.
+    
+    
+      And if you found a bug, or something broken that doesn't work as expected, please fill a bug report in the
+      
+        issues section 
+       in the github repository.
+    
+  
+
+
+
+
\ No newline at end of file
diff --git a/src/router.ts b/src/router.ts
index 1149f8b6..e4a0a932 100644
--- a/src/router.ts
+++ b/src/router.ts
@@ -17,6 +17,11 @@ const router = createRouter({
       name: 'home',
       component: HomePage,
     },
+    {
+      path: '/about',
+      name: 'about',
+      component: () => import('./pages/About.vue'),
+    },
     ...toolsRoutes,
     ...toolsRedirectRoutes,
     { path: '/:pathMatch(.*)*', name: 'NotFound', component: NotFound },