TourIAm/TIAMSharedUI/Pages/ContactPage.razor

42 lines
1.5 KiB
Plaintext

@page "/Contact"
<PageTitle>Contact</PageTitle>
<div class="text-center m-5">
<h1>Contact</h1>
<h2 style="font-size:small">Thank you for being here!</h2>
</div>
<div class="container mt-5">
<h1>Contact Us</h1>
<p>Have questions or need assistance? The Tour I Am team is here to help! Contact us for any inquiries about our airport transfer services or to make a booking. We look forward to hearing from you.</p>
<h2>Get in Touch</h2>
<ul>
<li><strong>Email:</strong> <a href="mailto:info@touriam.com">info@touriam.com</a></li>
<li><strong>Phone:</strong> <a href="tel:+1234567890">(123) 456-7890</a></li>
<li><strong>Address:</strong> 123 Airport Way, City, Country</li>
</ul>
@* <h2>Contact Form</h2>
<p>Alternatively, you can fill out our online contact form below, and we will get back to you as soon as possible.</p>
<form>
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" rows="4" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form> *@
</div>
@code {
}