Files
policy-ui/app/pages/workstation/renewals.vue
Jordan Weingarten 67482f6629 WIP jordan
2026-04-16 11:11:44 -05:00

19 lines
703 B
Vue

<script setup lang="ts">
usePageTitle('Renewals')
</script>
<template>
<div class="mx-auto max-w-2xl py-16 text-center">
<div class="inline-flex flex-col items-center gap-4">
<span
class="inline-flex items-center rounded-full px-3 py-1 text-[11px] font-semibold uppercase tracking-wider"
style="background: rgba(1, 105, 111, 0.06); color: #01696f;"
>Coming soon</span>
<h1 class="text-2xl font-semibold tracking-tight text-[var(--text-primary)]">Renewals</h1>
<p class="text-[14px] leading-relaxed text-[var(--text-muted)]">
Monitor upcoming policy expirations and manage the renewal pipeline end to end.
</p>
</div>
</div>
</template>