complete story @12.1

This commit is contained in:
Naser Mansour
2026-01-03 23:52:26 +02:00
parent 8201ec163e
commit b92fc29e3c
25 changed files with 248 additions and 393 deletions
@@ -1,47 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" {{ $attributes }}>
<!-- LIBRA for Rights - Botanical Icon -->
<g fill="currentColor">
<!-- Outer frame -->
<rect x="1" y="1" width="48" height="48" fill="none" stroke="currentColor" stroke-width="2"/>
<!-- Inner decorative frame -->
<rect x="4" y="4" width="42" height="42" fill="none" stroke="currentColor" stroke-width="1"/>
@props(['size' => 'md'])
<!-- Central plant stem -->
<line x1="25" y1="44" x2="25" y2="18" stroke="currentColor" stroke-width="2.5"/>
@php
$sizes = [
'sm' => 'h-7 w-7', // 28px
'md' => 'h-9 w-9', // 36px
'lg' => 'h-12 w-12', // 48px
];
$sizeClass = $sizes[$size] ?? $sizes['md'];
@endphp
<!-- Central leaves (symmetrical) -->
<path d="M25 28 Q19 23 16 28 Q19 33 25 28"/>
<path d="M25 28 Q31 23 34 28 Q31 33 25 28"/>
<path d="M25 21 Q17 16 14 23 Q19 28 25 21"/>
<path d="M25 21 Q33 16 36 23 Q31 28 25 21"/>
<!-- Top leaf/bud -->
<ellipse cx="25" cy="13" rx="5" ry="7"/>
<!-- Left wheat stalk -->
<line x1="11" y1="43" x2="11" y2="16" stroke="currentColor" stroke-width="1.5"/>
<ellipse cx="11" cy="13" rx="2.5" ry="5"/>
<ellipse cx="8" cy="18" rx="2.5" ry="4"/>
<ellipse cx="14" cy="18" rx="2.5" ry="4"/>
<ellipse cx="8" cy="26" rx="2.5" ry="4"/>
<ellipse cx="14" cy="26" rx="2.5" ry="4"/>
<!-- Right wheat stalk -->
<line x1="39" y1="43" x2="39" y2="16" stroke="currentColor" stroke-width="1.5"/>
<ellipse cx="39" cy="13" rx="2.5" ry="5"/>
<ellipse cx="36" cy="18" rx="2.5" ry="4"/>
<ellipse cx="42" cy="18" rx="2.5" ry="4"/>
<ellipse cx="36" cy="26" rx="2.5" ry="4"/>
<ellipse cx="42" cy="26" rx="2.5" ry="4"/>
<!-- Water droplets -->
<path d="M7 38 Q7 34 10 38 Q7 42 7 38"/>
<path d="M43 38 Q43 34 46 38 Q43 42 43 38"/>
<!-- Corner decorations -->
<circle cx="7" cy="7" r="2"/>
<circle cx="43" cy="7" r="2"/>
<circle cx="7" cy="43" r="2"/>
<circle cx="43" cy="43" r="2"/>
</g>
</svg>
<img
src="{{ asset('images/logo.png') }}"
alt="{{ __('LIBRA for Rights') }}"
{{ $attributes->merge(['class' => $sizeClass . ' object-contain']) }}
/>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 368 B