Skip to content

Commit

Permalink
updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tnylea committed May 31, 2024
1 parent 77d5b62 commit 9cdddc3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
8 changes: 5 additions & 3 deletions content/docs/install/breeze/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion includes/docs/auth-page-image.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="relative mb-0 bg-black rounded-t-lg border duration-300 ease-out border-zinc-800">
<div class="hidden relative mx-auto w-full h-auto font-mono text-base font-medium text-left text-white bg-gradient-to-br to-black rounded-t-lg border border-b-0 shadow-sm duration-300 ease-out border-zinc-700 sm:inline-block radial-background group from-neutral-900">
<div class="inline-block relative mx-auto w-full h-auto font-mono text-base font-medium text-left text-white bg-gradient-to-br to-black rounded-t-lg border border-b-0 shadow-sm duration-300 ease-out border-zinc-700 radial-background group from-neutral-900">
<div class="flex relative justify-center items-center py-14">
<img src="{ url('/assets/images/screens/{page}.jpg') }" alt="Authentication {page} page" class="w-64 h-auto rounded-lg" />
</div>
Expand Down

0 comments on commit 9cdddc3

Please sign in to comment.