From 0d8d68685d933bb1e284da14859a927cc1002663 Mon Sep 17 00:00:00 2001 From: Leon Serfaty G Date: Fri, 18 Jul 2025 04:16:42 +0000 Subject: [PATCH] create a go to front end button where instructed, so that admin can go f --- src/app/admin/leads/page.tsx | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) 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. +

+
+ + +