Skip to content

Commit 3cf4df0

Browse files
Create routes.php
1 parent cdec676 commit 3cf4df0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

routes.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
3+
return [
4+
'home' => [
5+
'view' => 'views/home.php',
6+
'title' => 'Home'
7+
],
8+
'pricing' => [
9+
'view' => 'views/pricing.php',
10+
'title' => 'Pricing'
11+
],
12+
'about' => [
13+
'view' => 'views/about.php',
14+
'title' => 'About'
15+
],
16+
'contact' => [
17+
'view' => 'views/contact.php',
18+
'title' => 'Contact'
19+
],
20+
'faq' => [
21+
'view' => 'views/faq.php',
22+
'title' => 'FAQ'
23+
],
24+
];

0 commit comments

Comments
 (0)