portfolio,services and about pages added

This commit is contained in:
2025-02-17 00:44:23 -05:00
parent f09e7ebdfa
commit 427a5f9396
8 changed files with 2143 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App\Controllers;
class Portfolio extends BaseController
{
public function index() : string
{
return view('portfolio');
}
}