From 95b89efcaa652e0e8b4a6beb4f3a04e55f5cc23a Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Mon, 30 Mar 2026 11:47:33 +0700 Subject: [PATCH] refactor: simplify welcome view and update web route to return a basic string response --- resources/views/welcome.blade.php | 378 +++++++++--------------------- routes/web.php | 2 +- 2 files changed, 115 insertions(+), 265 deletions(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index b7355d7..f23baf2 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -1,277 +1,127 @@ + + {{ config('app.name', 'MyClass') }} - Sistem Informasi Manajemen + @vite(['resources/css/app.css', 'resources/js/app.js']) + - @endif + @media (prefers-color-scheme: dark) { + .bg-grid { + background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), + linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px); + } + } + - -
- @if (Route::has('login')) - - @endif -
-
-
-
-

Let's get started

-

Laravel has an incredibly rich ecosystem.
We suggest starting with the following.

- - -
-
- {{-- Laravel Logo --}} - - - - - - - - - + - {{-- Light Mode 12 SVG --}} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {{-- Dark Mode 12 SVG --}} - -
-
-
+ +
- @if (Route::has('login')) - - @endif + +
+
+ +
+
+ SI Space +
+

+ Sistem Manajemen
Kelas Sederhana. +

+

+ Kelola jadwal kelas, daftar presensi, pengumpulan tugas, hingga materi belajar dalam satu antarmuka yang cepat dan mudah. +

+ +
+ + +
+
+
+ + + + +
+

Manajemen Sesi

+

Pemantauan kelas dan penjadwalan terstruktur dan mudah dilihat.

+
+
+
+ + + + +
+

Tugas & Materi

+

Pengelolaan repositori perkuliahan dan pengumpulan tugas.

+
+
+
+ + + +
+

Presensi Digital

+

Sistem pendataan kehadiran yang praktis, cepat, dan real-time.

+
+
+
+ + + +
+

Grup Belajar

+

Ruang kolaborasi, diskusi, dan obrolan untuk saling terhubung.

+
+
+ +
+
+ diff --git a/routes/web.php b/routes/web.php index 5c6e496..673a976 100644 --- a/routes/web.php +++ b/routes/web.php @@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Route; Route::get('/', function () { - return redirect()->route('filament.admin.auth.login'); + return view('welcome'); }); Route::get('/share/presensi/{token}', [ShareAttendanceController::class, 'show'])->name('share.attendance');