Initial commit

This commit is contained in:
2025-10-11 17:02:49 +02:00
commit 92056f073f
243 changed files with 27536 additions and 0 deletions

16
routes/web.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/', function () {
return Inertia::render('Home');
})->name('home');
Route::get('/menu', function () {
return Inertia::render('Menu/Menu');
})->name('menu');
Route::get('/galeria', function () {
return Inertia::render('Gallery/Gallery');
})->name('gallery');