AnhviNguyen
Forecast, dashboard, pronunciation, nginx fixes (exclude large ML weights)
3092643
Raw
History Blame Contribute Delete
492 Bytes
<template>
<div class="wave-divider" aria-hidden="true">
<svg viewBox="0 0 1200 48" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0,24 C300,48 600,0 900,24 C1050,36 1150,12 1200,24 L1200,48 L0,48 Z"
:fill="fill"
/>
</svg>
</div>
</template>
<script setup>
defineProps({
/** CSS color for the wave fill — should match the next section background */
fill: { type: String, default: 'var(--section-white)' },
})
</script>