diff --git a/.verdaccio/config.yml b/.verdaccio/config.yml
new file mode 100644
index 0000000..f74420f
--- /dev/null
+++ b/.verdaccio/config.yml
@@ -0,0 +1,28 @@
+# path to a directory with all packages
+storage: ../tmp/local-registry/storage
+
+# a list of other known repositories we can talk to
+uplinks:
+ npmjs:
+ url: https://registry.npmjs.org/
+ maxage: 60m
+
+packages:
+ '**':
+ # give all users (including non-authenticated users) full access
+ # because it is a local registry
+ access: $all
+ publish: $all
+ unpublish: $all
+
+ # if package is not available locally, proxy requests to npm registry
+ proxy: npmjs
+
+# log settings
+log:
+ type: stdout
+ format: pretty
+ level: warn
+
+publish:
+ allow_offline: true # set offline to true to allow publish offline
diff --git a/apps/dimentorin/postcss.config.mjs b/apps/dimentorin/postcss.config.mjs
new file mode 100644
index 0000000..a34a3d5
--- /dev/null
+++ b/apps/dimentorin/postcss.config.mjs
@@ -0,0 +1,5 @@
+export default {
+ plugins: {
+ '@tailwindcss/postcss': {},
+ },
+};
diff --git a/apps/dimentorin/src/app/app.module.css b/apps/dimentorin/src/app/app.module.css
deleted file mode 100644
index 7b88fba..0000000
--- a/apps/dimentorin/src/app/app.module.css
+++ /dev/null
@@ -1 +0,0 @@
-/* Your styles goes here. */
diff --git a/apps/dimentorin/src/app/app.spec.tsx b/apps/dimentorin/src/app/app.spec.tsx
deleted file mode 100644
index 279c1f2..0000000
--- a/apps/dimentorin/src/app/app.spec.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import { render } from '@testing-library/react';
-
-import App from './app';
-
-describe('App', () => {
- it('should render successfully', () => {
- const { baseElement } = render(