Files
policy-ui/app/pages/onboarding/active-leads/new.vue
Jordan Weingarten 67482f6629 WIP jordan
2026-04-16 11:11:44 -05:00

15 lines
679 B
Vue

<script setup lang="ts">
usePageTitle('New Active Lead')
</script>
<template>
<div class="mx-auto max-w-2xl space-y-6">
<div>
<h1 class="mt-0.5 text-2xl font-semibold tracking-tight text-[var(--text-primary)]">New Active Lead</h1>
</div>
<div class="rounded-xl border border-dashed border-[var(--card-border)] bg-[var(--surface)] px-8 py-12 text-center shadow-sm">
<p class="text-sm text-[var(--text-muted)] opacity-70">Active lead entry form coming online.</p>
<NuxtLink to="/onboarding" class="mt-4 inline-block text-[12px] font-medium text-[var(--brand)] hover:text-[var(--brand)]"> Sales Pipeline</NuxtLink>
</div>
</div>
</template>