Initialize website project structure

This commit is contained in:
2026-05-29 20:13:30 -04:00
parent dd3d820d0e
commit 86fac8853a
983 changed files with 181580 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
use CodeIgniter\Router\RouteCollection;
/**
* @var RouteCollection $routes
*/
$routes->get('/', 'Home::index');
$routes->get('/about', 'About::index');
$routes->get('/services', 'Services::index');
$routes->get('/blog', 'Blog::index');
$routes->get('/blog-single', 'Blog::single');
$routes->get('/contact', 'Contact::index');
$routes->get('/faqs', 'Faqs::index');
$routes->get('/pricing', 'Pricing::index');
$routes->get('/projects', 'Projects::index');
$routes->get('/project-single', 'Projects::single');
$routes->get('/team', 'Team::index');
$routes->get('/team-single', 'Team::single');
$routes->get('/testimonials', 'Testimonials::index');
$routes->get('/image-gallery', 'Gallery::image');
$routes->get('/video-gallery', 'Gallery::video');
$routes->get('/service-single', 'Services::single');
$routes->get('/404', 'Home::notFound');