diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-14 22:07:28 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-06-14 22:15:44 +0100 |
commit | 4ffec4148ae18a048ca8e0f3e3b651d83b5e05d6 (patch) | |
tree | 89d6c25e2deb7ff2c3e9a49bf298fd552c34b81a /routes | |
parent | bf5b014435097433978f8d3a583a0cb138a314ff (diff) |
feat: projects page
Diffstat (limited to 'routes')
-rw-r--r-- | routes/web.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php index 97506dd..4bdc1c2 100644 --- a/routes/web.php +++ b/routes/web.php @@ -20,3 +20,7 @@ Route::get('/', function () { Route::get('/bookmarks', function () { return View::make('pages.bookmarks'); }); + +Route::get('/projects', function () { + return View::make('pages.projects'); +}); |