diff --git a/README.md b/README.md
index a51f9c53..a9566643 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,6 @@

-Useful tools for developer and people working in IT. [Have a look !](https://it-tools.tech).
-
-## Functionalities and roadmap
-
-Please check the [issues](https://github.com/CorentinTh/it-tools/issues) to see if some feature listed to be implemented.
-
-You have an idea of a tool? Submit a [feature request](https://github.com/CorentinTh/it-tools/issues/new/choose)!
+Useful tools for developer and people working in IT. [Have a look !].
## Self host
@@ -15,13 +9,7 @@ Self host solutions for your homelab
**From docker hub:**
```sh
-docker run -d --name it-tools --restart unless-stopped -p 8080:80 corentinth/it-tools:latest
-```
-
-**From github packages:**
-
-```sh
-docker run -d --name it-tools --restart unless-stopped -p 8080:80 ghcr.io/corentinth/it-tools:latest
+docker run -d --name it-tools --restart unless-stopped -p 8080:80 abambah/it-tools:v3
```
**Other solutions:**
@@ -104,24 +92,3 @@ pnpm run script:create:tool my-tool-name
```
It will create a directory in `src/tools` with the correct files, and a the import in `src/tools/index.ts`. You will just need to add the imported tool in the proper category and develop the tool.
-
-## Contributors
-
-Big thanks to all the people who have already contributed!
-
-[](https://github.com/corentinth/it-tools/graphs/contributors)
-
-## Credits
-
-Coded with ❤️ by [Corentin Thomasset](//corentin-thomasset.fr).
-
-This project is continuously deployed using [vercel.com](https://vercel.com).
-
-Contributor graph is generated using [contrib.rocks](https://contrib.rocks/preview?repo=corentinth/it-tools).
-
-
-
-
-## License
-
-This project is under the [GNU GPLv3](LICENSE).
diff --git a/components.d.ts b/components.d.ts
index f2c3146f..90066aeb 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -10,7 +10,6 @@ export {}
declare module '@vue/runtime-core' {
export interface GlobalComponents {
'404.page': typeof import('./src/pages/404.page.vue')['default']
- About: typeof import('./src/pages/About.vue')['default']
App: typeof import('./src/App.vue')['default']
AsciiTextDrawer: typeof import('./src/tools/ascii-text-drawer/ascii-text-drawer.vue')['default']
'Base.layout': typeof import('./src/layouts/base.layout.vue')['default']
@@ -90,6 +89,9 @@ declare module '@vue/runtime-core' {
IbanValidatorAndParser: typeof import('./src/tools/iban-validator-and-parser/iban-validator-and-parser.vue')['default']
'IconMdi:brushVariant': typeof import('~icons/mdi/brush-variant')['default']
'IconMdi:kettleSteamOutline': typeof import('~icons/mdi/kettle-steam-outline')['default']
+ IconMdiArrowDown: typeof import('~icons/mdi/arrow-down')['default']
+ IconMdiArrowRightBottom: typeof import('~icons/mdi/arrow-right-bottom')['default']
+ IconMdiCamera: typeof import('~icons/mdi/camera')['default']
IconMdiChevronDown: typeof import('~icons/mdi/chevron-down')['default']
IconMdiChevronRight: typeof import('~icons/mdi/chevron-right')['default']
IconMdiClose: typeof import('~icons/mdi/close')['default']
@@ -166,6 +168,7 @@ declare module '@vue/runtime-core' {
StringObfuscator: typeof import('./src/tools/string-obfuscator/string-obfuscator.vue')['default']
SvgPlaceholderGenerator: typeof import('./src/tools/svg-placeholder-generator/svg-placeholder-generator.vue')['default']
TemperatureConverter: typeof import('./src/tools/temperature-converter/temperature-converter.vue')['default']
+ 'Test.page': typeof import('./src/pages/test.page.vue')['default']
TextareaCopyable: typeof import('./src/components/TextareaCopyable.vue')['default']
TextDiff: typeof import('./src/tools/text-diff/text-diff.vue')['default']
TextStatistics: typeof import('./src/tools/text-statistics/text-statistics.vue')['default']
diff --git a/index.html b/index.html
index e8b8a60e..c0252c0c 100644
--- a/index.html
+++ b/index.html
@@ -14,7 +14,7 @@
itemprop="description"
content="Collection of handy online tools for developers, with great UX. IT Tools is a free and open-source collection of handy online tools for developers & people working in IT."
/>
-
+
test this too
diff --git a/src/router.ts b/src/router.ts index da0c4f1e..b8dd6956 100644 --- a/src/router.ts +++ b/src/router.ts @@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'; import { layouts } from './layouts/index'; import HomePage from './pages/Home.page.vue'; import NotFound from './pages/404.page.vue'; +import test from './pages/test.page.vue'; import { tools } from './tools'; import { config } from './config'; import { routes as demoRoutes } from './ui/demo/demo.routes'; @@ -24,12 +25,12 @@ const router = createRouter({ { path: '/', name: 'home', - component: HomePage, + component: test, }, { path: '/about', name: 'about', - component: () => import('./pages/About.vue'), + component: HomePage, }, ...toolsRoutes, ...toolsRedirectRoutes,