Files
webdoorcreator/WebDoorCreator.UI/Components/SvgComp/HomeCard.razor
T
2023-05-10 13:30:14 +02:00

19 lines
734 B
Plaintext

<svg viewBox="0 0 @ObjW @ObjH" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="theClippingPath">
<path d="M1200,0 L1920,0 L1920,1080 L900,1080 Q 925,680 1050,540 1175,400 1200,0 Z" />
</clipPath>
</defs>
<image xlink:href="images/DOORBG.png" height="100%" width="100%" clip-path="url(#theClippingPath)"></image>
<foreignObject width="@(ObjW/2)" height="@ObjH">
<div class="row" style="@TextStyle">
<div class="@TitleClass">
Web Door Creator
</div>
<div class="@BodyClass text-center">
The new way to create doors
</div>
</div>
</foreignObject>
</svg>