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 | c338c310ac584408bfa01c3e6f18986d4e03baab (patch) | |
tree | 89d6c25e2deb7ff2c3e9a49bf298fd552c34b81a /routes/web.php | |
parent | 57190b2f773a340d4a6ebb1785bf8bc4e90eeef2 (diff) |
feat: projects page
Diffstat (limited to 'routes/web.php')
-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'); +}); |