2024-12-11 15:19:08 +05:45

23 lines
708 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// Example data for the "Contact Us" section
$contactdata = [
[
"icon" => "fas fa-phone", // Font Awesome class or custom icon
"icon_color" => "text-red-500", // Tailwind color classes
"name" => "Contact Us",
"description" => "+1 800 603 6035<br>mail@companyname.com"
],
[
"icon" => "fas fa-map-marker-alt",
"icon_color" => "text-green-500",
"name" => "Get Direction",
"description" => "56 12th Ave,<br>New York, NY 10011"
],
[
"icon" => "fas fa-clock",
"icon_color" => "text-blue-500",
"name" => "Opening Hours",
"description" => "Monday Saturday:<br>Noon 11:30 PM"
]
];
?>