diff --git a/README.md b/README.md
index 97a3f81..69edc65 100644
--- a/README.md
+++ b/README.md
@@ -14,11 +14,24 @@ ## Installation
```bash
composer install
```
-c
+
```bash
-composer install
+php artisan key:generate
```
+```bash
+npm install
+```
+
+```bash
+npm run dev
+```
+
+```bash
+php artisan serve
+```
+
+
## Running tests
```bash
diff --git a/resources/views/auth/confirm-password.blade.php b/resources/views/auth/confirm-password.blade.php
deleted file mode 100644
index 3d38186..0000000
--- a/resources/views/auth/confirm-password.blade.php
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
- {{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
-
-
-
-
diff --git a/resources/views/auth/forgot-password.blade.php b/resources/views/auth/forgot-password.blade.php
deleted file mode 100644
index cb32e08..0000000
--- a/resources/views/auth/forgot-password.blade.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
- {{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }}
-
-
-
-
-
-
-
diff --git a/resources/views/auth/reset-password.blade.php b/resources/views/auth/reset-password.blade.php
deleted file mode 100644
index a6494cc..0000000
--- a/resources/views/auth/reset-password.blade.php
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
diff --git a/resources/views/auth/verify-email.blade.php b/resources/views/auth/verify-email.blade.php
deleted file mode 100644
index eaf811d..0000000
--- a/resources/views/auth/verify-email.blade.php
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
- {{ __('Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }}
-
-
- @if (session('status') == 'verification-link-sent')
-
- {{ __('A new verification link has been sent to the email address you provided during registration.') }}
-
- @endif
-
-
-
diff --git a/resources/views/components/danger-button.blade.php b/resources/views/components/danger-button.blade.php
deleted file mode 100644
index d17d288..0000000
--- a/resources/views/components/danger-button.blade.php
+++ /dev/null
@@ -1,3 +0,0 @@
-merge(['type' => 'submit', 'class' => 'inline-flex items-center px-4 py-2 bg-red-600 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-red-500 active:bg-red-700 focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-offset-2 transition ease-in-out duration-150']) }}>
- {{ $slot }}
-
diff --git a/resources/views/components/modal.blade.php b/resources/views/components/modal.blade.php
deleted file mode 100644
index 70704c1..0000000
--- a/resources/views/components/modal.blade.php
+++ /dev/null
@@ -1,78 +0,0 @@
-@props([
- 'name',
- 'show' => false,
- 'maxWidth' => '2xl'
-])
-
-@php
-$maxWidth = [
- 'sm' => 'sm:max-w-sm',
- 'md' => 'sm:max-w-md',
- 'lg' => 'sm:max-w-lg',
- 'xl' => 'sm:max-w-xl',
- '2xl' => 'sm:max-w-2xl',
-][$maxWidth];
-@endphp
-
-
diff --git a/resources/views/components/secondary-button.blade.php b/resources/views/components/secondary-button.blade.php
deleted file mode 100644
index b32b69f..0000000
--- a/resources/views/components/secondary-button.blade.php
+++ /dev/null
@@ -1,3 +0,0 @@
-merge(['type' => 'button', 'class' => 'inline-flex items-center px-4 py-2 bg-white border border-gray-300 rounded-md font-semibold text-xs text-gray-700 uppercase tracking-widest shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 disabled:opacity-25 transition ease-in-out duration-150']) }}>
- {{ $slot }}
-