23 lines
708 B
PHP
23 lines
708 B
PHP
<?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"
|
||
]
|
||
];
|
||
?>
|