diff --git a/src/app/admin/leads/page.tsx b/src/app/admin/leads/page.tsx index e9151b9..247a9c5 100644 --- a/src/app/admin/leads/page.tsx +++ b/src/app/admin/leads/page.tsx @@ -1,4 +1,6 @@ +import Link from 'next/link'; +import { Button } from '@/components/ui/button'; import { Card, CardContent, @@ -16,17 +18,26 @@ import { } from '@/components/ui/table'; import { getLeads } from '@/lib/actions/leads'; import { format } from 'date-fns'; +import { ExternalLink } from 'lucide-react'; export default async function LeadsPage() { const leads = await getLeads(); return (
-
-

Leads

-

- A list of all the users who have requested an estimate. -

+
+
+

Leads

+

+ A list of all the users who have requested an estimate. +

+
+ + +