Initial commit
This commit is contained in:
23
assests/data/contactdata.php
Normal file
23
assests/data/contactdata.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?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"
|
||||
]
|
||||
];
|
||||
?>
|
Reference in New Issue
Block a user