From c3904a27496d273944df918bde2686956d30f696 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 18:33:22 +0000 Subject: [PATCH 1/2] Update src/app/leads/page.tsx --- src/app/leads/page.tsx | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/src/app/leads/page.tsx b/src/app/leads/page.tsx index 891f3cc..2e31488 100644 --- a/src/app/leads/page.tsx +++ b/src/app/leads/page.tsx @@ -8,14 +8,28 @@ export default function LeadsPage() { const [search, setSearch] = useState(""); return ( - - + +

Leads Dashboard

-- 2.49.1 From a3c1a915ec1750bf60740481c7b9422307b3cc8d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 18:33:22 +0000 Subject: [PATCH 2/2] Update src/app/missed-calls/page.tsx --- src/app/missed-calls/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/missed-calls/page.tsx b/src/app/missed-calls/page.tsx index cf715b3..a952abd 100644 --- a/src/app/missed-calls/page.tsx +++ b/src/app/missed-calls/page.tsx @@ -7,7 +7,6 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; import { useState } from 'react'; export default function MissedCallsPage() { - // Mock data for demonstration const [calls] = useState([ { id: 1, caller: "John Doe", phone: "(555) 123-4567", time: "10:30 AM", status: "Missed" }, { id: 2, caller: "Sarah Smith", phone: "(555) 987-6543", time: "09:15 AM", status: "Missed" }, @@ -32,6 +31,7 @@ export default function MissedCallsPage() {