17 lines
442 B
PHP
17 lines
442 B
PHP
<?php
|
|
|
|
/**
|
|
* Apply For Financing Button
|
|
*
|
|
* @package ThemeStarter
|
|
*/
|
|
|
|
?>
|
|
|
|
<div>
|
|
<a class="flex justify-center" href="<?= esc_url(get_permalink('45')); ?>">
|
|
<button aria-label="Apply For Financing" class="py-2 pl-16 relative pr-4 rounded-md bg-green-700 text-white">
|
|
<i class="absolute left-2 text-2xl -top-1 rounded-md p-2 bg-green-300 bi-currency-dollar"></i>Apply For Financing
|
|
</button>
|
|
</a>
|
|
</div>
|