2024-08-06 14:12:25 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
|
|
Route::get('/', function () {
|
2024-08-06 16:39:08 +02:00
|
|
|
return view('index');
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Route::get('/about', function () {
|
|
|
|
return view('about');
|
|
|
|
});
|
|
|
|
|
2024-08-07 13:37:14 +02:00
|
|
|
Route::get('/graphics', function () {
|
|
|
|
return view('graphics');
|
|
|
|
});
|
|
|
|
|
|
|
|
Route::get('/photos', function () {
|
|
|
|
return view('photos');
|
|
|
|
});
|
|
|
|
|
|
|
|
Route::get('/comics', function () {
|
|
|
|
return view('comics');
|
|
|
|
});
|
|
|
|
|
2024-08-06 16:39:08 +02:00
|
|
|
Route::get('/code', function () {
|
|
|
|
return view('code');
|
2024-08-06 14:12:25 +02:00
|
|
|
});
|
2024-08-07 13:37:14 +02:00
|
|
|
|
|
|
|
Route::get('/notes', function () {
|
|
|
|
return view('code');
|
|
|
|
});
|