aboutsummaryrefslogtreecommitdiff
path: root/routes/web.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-06-14 22:07:28 +0100
committerFrankie B <frankieraybrown@gmail.com>2023-06-14 22:15:44 +0100
commitc338c310ac584408bfa01c3e6f18986d4e03baab (patch)
tree89d6c25e2deb7ff2c3e9a49bf298fd552c34b81a /routes/web.php
parent57190b2f773a340d4a6ebb1785bf8bc4e90eeef2 (diff)
feat: projects page
Diffstat (limited to 'routes/web.php')
-rw-r--r--routes/web.php4
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');
+});