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