Files
CHIEFSOFT\ameye f8f8646e59 faq 1
2025-11-15 10:48:56 -05:00

35 lines
1.7 KiB
PHP

<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index(): string
{
$data['faq_data'] = $this->faqData();
//return view('welcome_message');
return view('index2',$data);
}
private function faqData()
{
return [
['What is HealthRader?', 'HealthRader provides a platform that connects your health data pieces and makes it easy to inject intelligence and diverse engagement delivery points. In essence, we help make your health data journey smoother.'],
['How do I sign up?', 'Great value and so easy to use and saves me so much time! I was shocked by how much time
and brain energy it saved me. Simple & easy gotta love that. Great value and so easy to
use.'],
['What platforms are supported?', 'Great value and so easy to use and saves me so much time! I was shocked by how much time
and brain energy it saved me. Simple & easy gotta love that. Great value and so easy to
use.'],
['Can I request specific features?', 'Great value and so easy to use and saves me so much time! I was shocked by how much time
and brain energy it saved me. Simple & easy gotta love that. Great value and so easy to
use.'],
['How do I get support or help?', 'Great value and so easy to use and saves me so much time! I was shocked by how much time
and brain energy it saved me. Simple & easy gotta love that. Great value and so easy to
use.'],
];
}
}