summaryrefslogtreecommitdiff
path: root/src/web/config/routes.php
blob: 20b499a382ffa154e9f7ce32e1980f8ec939d4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php /* Copyright (c) 2024 Freya Murphy */

$routes = array();
$routes['home'] = 'apps/home';
$routes['error'] = 'apps/error';
$routes['auth'] = 'apps/auth';
$routes['people'] = 'apps/people';
$routes['profile'] = 'apps/profile';
$routes['settings'] = 'apps/settings';

$routes[''] = '_index';
$routes['manifest.json'] = '_meta/manifest';