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

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() {