Prompt: update homepage to look exactly like this: https://clockify.me/ I want everything copied, I will update what I need and don't need later, I need this to look like 1:1 copy Stats: Context: 85,890 tokens Time: 36m 25s
13 lines
288 B
PHP
13 lines
288 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Laravel\Fortify\Features;
|
|
|
|
Route::inertia('/', 'Homepage')->name('home');
|
|
|
|
Route::middleware(['auth', 'verified'])->group(function () {
|
|
Route::inertia('dashboard', 'Dashboard')->name('dashboard');
|
|
});
|
|
|
|
require __DIR__.'/settings.php';
|