Files
ClockyFly/routes/web.php
Darius Rapalis 89da4fdcc1 Model: Qwen 3.6 35B A3
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
2026-04-28 19:21:57 +03:00

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';