-
- );
-};
diff --git a/frontend/src/components/pages/Landing/Landing.tsx b/frontend/src/components/pages/Landing/Landing.tsx
index 0397245..af5dc84 100644
--- a/frontend/src/components/pages/Landing/Landing.tsx
+++ b/frontend/src/components/pages/Landing/Landing.tsx
@@ -21,16 +21,12 @@ function Landing() {
-
-
-
-
diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json
deleted file mode 100644
index 5d655e0..0000000
--- a/node_modules/.package-lock.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "name": "PROD-Animulichki-SkillHub",
- "lockfileVersion": 3,
- "requires": true,
- "packages": {
- "node_modules/@balkangraph/orgchart.js": {
- "version": "8.14.19",
- "resolved": "https://registry.npmjs.org/@balkangraph/orgchart.js/-/orgchart.js-8.14.19.tgz",
- "integrity": "sha512-pa4km/5mTWmMcVLBIsHcuC73s4y1La9BOx4AU9ilGetQwlAbWfrFcSU7hf8FO49otmk1AysfBhPrcBoRl2i46w=="
- }
- }
-}
diff --git a/node_modules/@balkangraph/orgchart.js/README.md b/node_modules/@balkangraph/orgchart.js/README.md
deleted file mode 100644
index da5125f..0000000
--- a/node_modules/@balkangraph/orgchart.js/README.md
+++ /dev/null
@@ -1,61 +0,0 @@
-#  Org Chart JS
-Build organizational chart app with BALKAN OrgChartJS JavaScript library. Org Chart JS is a simple, flexible and highly customizable organization chart plugin for presenting the structure of your organization and the relationships in an elegant way.
-
-
-
-## [Demos](https://balkan.app/OrgChartJS/Demos/BasicUsage) [Docs](https://balkan.app/OrgChartJS/Docs/GettingStarted) [Download](https://balkan.app/OrgChartJS/Download) [Support](https://balkan.app/OrgChartJS/Support)
-
-## Features
-- Supports both local data and remote data (JSON)
-- Smooth expand/collapse effects
-- Align the chart in 8 orientations
-- Allows user to change orgchart structure by drag/drop nodes
-- Supports pan and zoom
-- Edit Form
-- Node Customization
-- Search
-- Scroll Bars
-- Lazy Loading
-- Mixed Hierarchy
-- Exporting
-- Assistant
-- Partners
-- Sub Trees
-- Family Tree
-
-## Installation
-Option 1 - [standalone build](https://balkan.app/OrgChartJS/Docs/GettingStarted)
-
-Option 2 - NPM
-```
-npm i @balkangraph/orgchart.js
-```
-
-Option 3 - Bower
-```
-bower install orgchart.js
-```
-
-
-## Usage
-```
-
-
-
-```
-
-
-## 1 click to talk 2 us
-
-[](https://webcall.me/BALKANGraph)
diff --git a/node_modules/@balkangraph/orgchart.js/orgchart.d.ts b/node_modules/@balkangraph/orgchart.js/orgchart.d.ts
deleted file mode 100644
index 6de2ead..0000000
--- a/node_modules/@balkangraph/orgchart.js/orgchart.d.ts
+++ /dev/null
@@ -1,2704 +0,0 @@
-
-
-declare class OrgChart extends OrgChartBase {
- nodes: { [key in any]: OrgChart.node };
- isVisible: boolean;
- visibleNodeIds: Array;
-
- /**
- * @param element HTML element or string selector for example '#tree'
- * @param options configuration options
- */
- constructor(element: HTMLElement | string, options?: OrgChart.options);
-
-
- /**
- * Updates the node data
- * @param newData node data
- */
- update(newData: object): OrgChart;
-
- /**
- * Removes specified node from nodes collection
- * @param id identification number of the node
- */
- remove(id: string | number): OrgChart;
- /**
- * Adds new node to the nodes collection
- * @param data node data
- */
- add(data: object): OrgChart;
- /**
- * Gets node data.
- * @param id identification number of the node
- */
- get(id: string | number): OrgChart.node;
- /**
- * If specified node has assistant/s or partner/s as children will return false.
- * @param id identification number of the node
- */
- canRemove(id: string | number): boolean;
- /**
- * Expands specified nodes.
- * @param id the id of the node that will not move during the animation
- * @param ids node ids that will be expanded
- * @param callback called after the animation completes
- */
- expand(id: string | number, ids: Array, callback?: () => void): void;
- /**
- * Collapses specified nodes.
- * @param id the id of the node that will not move
- * @param ids node ids that will be collapsed
- * @param callback called after the animation completes
- */
- collapse(id: string | number, ids: Array, callback?: () => void): void;
- /**
- * Expand/Collapse lists of nodes.
- * @param id the id of the node that will not move
- * @param expandIds expand all nodes with ids
- * @param collapseIds collpase all nodes with ids
- * @param callback called after the animation completes
- */
- expandCollapse(id: string | number, expandIds: Array, collapseIds: Array, callback?: () => void): void;
- /**
- * Changes roots order.
- * @param id id of a node that will not change is position, can be null
- * @param roots roots id array in the required order
- * @param callback called after the roots are changed and animation completes
- */
- changeRoots(id: string | number, roots: Array, callback?: () => void): void;
- /**
- * Maximize the node. Without parameters maximize all nodes.
- * @param id the id of the node, if id is null, undefined ot empty string will maximize all nodes
- * @param horizontalCenter center horizontally
- * @param verticalCenter center vertically
- * @param callback called when the animation completes
- */
- maximize(id?: string | number, horizontalCenter?: boolean, verticalCenter?: boolean, callback?: () => void): void;
- /**
- * Minimize the node. Without parameters minimize all nodes.
- * @param id the id of the node, if id is null, undefined ot empty string will minimize all nodes
- * @param callback called when the animation completes
- */
- minimize(id?: string | number, callback?: () => void): void;
- /**
- * Load nodes data.
- * @param data node data array
- * @param callback function called after the load
- */
- load(data: Array