Initial commit
This commit is contained in:
16
routes/web.php
Normal file
16
routes/web.php
Normal 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');
|
||||
Reference in New Issue
Block a user