17 lines
479 B
PHP
17 lines
479 B
PHP
<?php
|
|
|
|
$title = 'Contact Us - Wizdom Networks';
|
|
$content = <<<HTML
|
|
<h1>Get in Touch</h1>
|
|
<p>We would love to hear from you. Use the form below to send us a message, or reach out via email or phone.</p>
|
|
<div class="contact-details">
|
|
<p><strong>Email:</strong> contact@wizdom.ca</p>
|
|
<p><strong>Phone:</strong> +1-800-123-4567</p>
|
|
</div>
|
|
HTML;
|
|
|
|
// Add the contact form
|
|
//$content .= $this->getContactForm($data);
|
|
|
|
$this->render('layouts/main', compact('title', 'content'));
|