product fixes

This commit is contained in:
Jerry
2024-07-04 10:17:59 +02:00
parent 7cf93eb53b
commit b539cd387a
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<svg width="59" height="60" viewBox="0 0 59 60" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_2085_426)">
<path d="M29.5 46.3137C29.5 33.8679 39.5541 23.8137 52 23.8137C39.5541 23.8137 29.5 13.7596 29.5 1.31372C29.5 13.7596 19.4459 23.8137 7 23.8137C19.4459 23.8137 29.5 33.9121 29.5 46.3137Z" fill="#0055D6"/>
</g>
<defs>
<filter id="filter0_d_2085_426" x="0" y="0.313721" width="59" height="59" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="3.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.171667 0 0 0 0 0.429167 0 0 0 0.37 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2085_426"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2085_426" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,23 @@
<?php
/**
* Template Name: Inter font connected
*/
get_header();
if (have_posts()):
while (have_posts()):
the_post();
?>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
<div class="content">
<?= the_content(); ?>
</div>
<?php
endwhile;
endif;
get_footer();