aboutsummaryrefslogtreecommitdiff
path: root/routes/web.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-06-14 22:10:24 +0100
committerFrankie B <frankieraybrown@gmail.com>2023-06-14 22:15:44 +0100
commit89ec6df6b7c1fdde4d5acb128481d3684c4862aa (patch)
tree62e7c57879b234e76a3e7953099fc6e452778c79 /routes/web.php
parenta02cbfb495ba2a270c4525becb34791397601b7d (diff)
feat: computers 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 ee2327b..055b4e5 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -28,3 +28,7 @@ Route::get('/projects', function () {
Route::get('/calculators', function () {
return View::make('pages.calculators');
});
+
+Route::get('/computers', function () {
+ return View::make('pages.computers');
+});