17 lines
445 B
PHP
17 lines
445 B
PHP
<?php
|
|
|
|
/**
|
|
* Start A Conversation Button
|
|
*
|
|
* @package ThemeStarter
|
|
*/
|
|
|
|
?>
|
|
|
|
<div>
|
|
<a class="flex justify-center" href="<?= esc_url(get_permalink('12')); ?>">
|
|
<button aria-label="Start a Conversation" class="py-2 pl-16 relative pr-4 rounded-md bg-yellow-300 text-black">
|
|
<i class="absolute left-2 text-2xl -top-1 rounded-md p-2 bg-stone-300 bi-megaphone-fill"></i>Start A Conversation
|
|
</button>
|
|
</a>
|
|
</div>
|