'Home', 'description' => '', ]; // Load the view with the specified data $this->view('pages/index', $data); } /** * About Method * * Handles the about us page of the application. */ public function about(){ // Data for the view $data = [ 'title' => 'About Us', 'description' => '', 'version' => APP_VERSION, ]; // Load the view with the specified data $this->view('pages/about', $data); } }