23 lines
708 B
PHP
Raw Permalink Normal View History

2024-12-11 15:19:08 +05:45
<?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"
]
];
?>