Add bookmarks page

This commit is contained in:
Frankie B 2023-06-13 23:50:07 +01:00 committed by Frankie B
commit 16ecc6abe3
3 changed files with 96 additions and 0 deletions

View file

@ -16,3 +16,7 @@
Route::get('/', function () {
return View::make('pages.home');
});
Route::get('/bookmarks', function () {
return View::make('pages.bookmarks');
});