Files
Leon SerfatyandClaude Opus 4.8 857b9a7811 Initial import: property management SaaS + security hardening + admin dashboard
Property Management Network — Next.js 16 (App Router), Better Auth,
Drizzle ORM over PostgreSQL, Stripe, OpenAI, Resend.

Includes:
- Security hardening: access-control/IDOR fixes, TLS-by-default DB layer,
  constant-time cron auth, strict security headers, atomic AI quota gating,
  HTML/email output encoding, demo-backdoor disabled in production.
- Superadmin dashboard at /admin (overview/MRR, server-paginated users with
  ban/impersonate/plan/delete, billing, platform activity + admin audit log,
  AI usage, system health) via the Better Auth admin plugin.
- Seed/migration utility scripts under scripts/.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-23 20:36:07 -04:00

53 lines
2.1 KiB
TypeScript

"use client"
import { useState, useEffect } from "react"
import Link from "next/link"
import { motion, AnimatePresence } from "framer-motion"
import { ArrowRight, X } from "lucide-react"
export function FloatingCTA() {
const [show, setShow] = useState(false)
const [dismissed, setDismissed] = useState(false)
useEffect(() => {
const handler = () => {
if (!dismissed) setShow(window.scrollY > 700)
}
window.addEventListener("scroll", handler, { passive: true })
return () => window.removeEventListener("scroll", handler)
}, [dismissed])
return (
<div className="fixed bottom-4 right-4 sm:bottom-6 sm:right-6 z-[80]">
<AnimatePresence>
{show && !dismissed && (
<motion.div
initial={{ opacity: 0, y: 20, scale: 0.9 }}
animate={{ opacity: 1, y: 0, scale: 1 }}
exit={{ opacity: 0, y: 16, scale: 0.9 }}
transition={{ type: "spring", stiffness: 300, damping: 25 }}
className="relative flex items-center gap-2 sm:gap-3 rounded-2xl border border-indigo-500/30 bg-indigo-600 px-4 sm:px-5 py-3 shadow-2xl shadow-indigo-500/30"
>
<button
onClick={() => { setDismissed(true); setShow(false) }}
className="absolute -top-2 -right-2 flex h-5 w-5 items-center justify-center rounded-full border border-white/20 bg-[#16161f] text-white/50 hover:text-white transition"
>
<X className="h-3 w-3" />
</button>
<div>
<p className="text-xs font-bold text-white">Start free today</p>
<p className="text-[10px] text-indigo-200">No credit card required</p>
</div>
<Link
href="/signup"
className="flex items-center gap-1.5 rounded-xl bg-white px-4 py-2 text-xs font-bold text-indigo-600 hover:bg-indigo-50 transition-all hover:gap-2.5 whitespace-nowrap"
>
Get started <ArrowRight className="h-3.5 w-3.5" />
</Link>
</motion.div>
)}
</AnimatePresence>
</div>
)
}