19 lines
698 B
Vue
19 lines
698 B
Vue
<script setup lang="ts">
|
|
usePageTitle('Claims')
|
|
</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)]">Claims</h1>
|
|
<p class="text-[14px] leading-relaxed text-[var(--text-muted)]">
|
|
File, track, and manage insurance claims from first notice through resolution.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</template>
|