Skip to content

Commit

Permalink
Update Skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone authored and github-actions[bot] committed Oct 8, 2024
1 parent ac33e8f commit b7e88a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion laravel/resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</head>
<body class="font-sans antialiased dark:bg-black dark:text-white/50">
<div class="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50">
<img id="background" class="absolute -left-20 top-0 max-w-[877px]" src="https://laravel.com/assets/img/welcome/background.svg" />
<img id="background" class="absolute -left-20 top-0 max-w-[877px]" src="https://laravel.com/assets/img/welcome/background.svg" alt="Laravel background" />
<div class="relative min-h-screen flex flex-col items-center justify-center selection:bg-[#FF2D20] selection:text-white">
<div class="relative w-full max-w-2xl px-6 lg:max-w-7xl">
<header class="grid grid-cols-2 items-center gap-2 py-10 lg:grid-cols-3">
Expand Down
1 change: 1 addition & 0 deletions workbench/resources/views/errors/418.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
I&#039;m a teapot
3 changes: 3 additions & 0 deletions workbench/routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@

Route::view('/testbench', 'workbench::testbench')->name('testbench');
Route::text('/hello-world', 'Hello world');
Route::get('/root', function () {
abort(418);
});

0 comments on commit b7e88a3

Please sign in to comment.