diff --git a/docs/Getting started.md b/docs/Getting started.md
deleted file mode 100644
index 2f0121d..0000000
--- a/docs/Getting started.md
+++ /dev/null
@@ -1,178 +0,0 @@
----
-sidebar_position: 0
----
-
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-
-# Getting started
-
-Image-JS is a versatile and powerful library written in TypeScript for image processing and analysis. It gives a user a comprehensive set of tools and algorithms for manipulating, enhancing, and understanding images not only within Node.js but also across all popular browsers.
-
-### Installation
-
-Installation of ImageJS is straight-forward. Use terminal to install the package:
-
-
-
-
-```
-npm install image-js
-```
-
-
-
-
-```
-yarn add image-js
-```
-
-
-
-
-There are two ways of loading an image to process it, depending on the way the user is operating: to load locally and load through the browser.
-
-### Loading your first image in Node.js
-
-Local loading uses `readSync` function with indicated filepath:
-
-```ts
-import { readSync } from 'image-js';
-
-const parsedImage = readSync('../example.jpg');
-```
-
-:::tip
-Node.js can also load an image via `fetchURL`. To get more information take a look at ["Browser"](#loading-your-first-image-in-browser) part of this section.
-:::
-
-Once the image is loaded, it returns an instance of the `Image` class, so its methods can be applied.
-
-```ts
-const image = parsedImage.invert();
-```
-
-To save an image use `writeSync` function:
-
-```ts
-writeSync('../example.jpg', image);
-```
-
-Image format is automatically identified based on the extension typed by the user. In this case it's `'.jpg'`.
-
-So, in the end you should get a code like this.
-
-```ts
-import { readSync, writeSync, Image } from 'image-js';
-
-const parsedImage = readSync('../example.jpg');
-const image = parsedImage.invert();
-writeSync('../example.jpg', image);
-```
-
-### Loading your first image in browser
-
-To load an image via browser, in order to instantiate it, you may use `fetchURL` function:
-
-```ts
-import { fetchURL } from 'image-js';
-
-let image = await fetchURL('https:://example.com/image.jpg'); // image is ready for usage
-image = image.grey();
-```
-
-:::info
-To see more methods visit ["Features"](./Features/Features.md 'internal link on features') category.
-:::
-
-### Bundling your image with Vite
-
-To display an image via [DOM](https://en.wikipedia.org/wiki/Document_Object_Model 'wikipedia link on dom') you can use `writeCanvas` method.
-
-To do so, you need to create a Node.js project:
-
-```
-npm init
-```
-
-After creating one, install `vite` as a dev-dependency and then install `image-js`:
-
-```
-npm install -D vite
-```
-
-```
-npm install image-js
-```
-
-After this you can create a basic html page `index.html` with a `