diff --git a/assets/css/main.css b/assets/css/main.css index 10ec0cf..1c10540 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -104,10 +104,10 @@ h2 a, h3 a, h4 a { :root { --color-bg1: rgb(98, 98, 98); - --color-bg2: rgb(17, 17, 42); - --color1: 18, 18, 18; + --color-bg2: rgb(105, 105, 105); + --color1: 18, 18, 45; --color2: 161, 161, 161; - --color3: 41, 41, 41; + --color3: 0, 0, 0; --color4: 190, 190, 190; --color5: 8, 8, 8; --color-interactive: 140, 100, 255; diff --git a/content/docs/install/breeze/index.md b/content/docs/install/breeze/index.md index 0c56b56..96ebd64 100644 --- a/content/docs/install/breeze/index.md +++ b/content/docs/install/breeze/index.md @@ -47,13 +47,15 @@ Now that we have DevDojo Auth setup there are a handful of things that we need t ## Remove the Breeze Auth routes -Inside of your application `routes/web.php` you'll see a line that looks like this: +Inside of the `routes/auth.php` you'll need to remove all the guest authentication routes. Remove all content from this middleware group: ```php -require __DIR__.'/auth.php'; +Route::middleware('guest')->group(function () { + // remove all these routes +}); ``` -This is located near the end of the file. Go ahead and remove this from your application. +> You can remove the whole middleware group as well ## Enable the Name Field for Registration diff --git a/includes/docs/auth-page-image.html b/includes/docs/auth-page-image.html index 590e416..8a4ea7b 100644 --- a/includes/docs/auth-page-image.html +++ b/includes/docs/auth-page-image.html @@ -1,5 +1,5 @@