diff --git a/src/app/call-history/page.tsx b/src/app/call-history/page.tsx index 7d9b423..e1d82cf 100644 --- a/src/app/call-history/page.tsx +++ b/src/app/call-history/page.tsx @@ -4,15 +4,22 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import CardStack from '@/components/cardStack/CardStack'; -import { Mic, CheckCircle2, Clock } from "lucide-react"; +import { Clock } from "lucide-react"; export default function CallHistoryPage() { + const prospectNames = [ + "Sarah Jenkins", "Ahmed Al-Mansoori", "Elena Rossi", "Mark Z", "Jane Doe", + "Alice Wong", "Robert Chen", "Sophia Martinez", "David Kim", "Linda Taylor", "Kevin Patel", "Emily Johnson", "Brian O'Connor", "Rachel Green", "Tom Hiddleston" + ]; + const callData = Array.from({ length: 15 }).map((_, i) => ({ id: `call-${i}`, - name: ["Sarah Jenkins", "Ahmed Al-Mansoori", "Elena Rossi", "Mark Z", "Jane Doe"][i % 5], - timestamp: "2h ago", snippet: i % 2 === 0 + name: prospectNames[i], + timestamp: `${i + 1}h ago`, + snippet: i % 2 === 0 ? "Interest confirmed in the premium tier, scheduling demo." - : "Standard inquiry regarding service availability.", status: i % 3 === 0 ? "Booked" : "Lead"})); + : "Standard inquiry regarding service availability and pricing.", status: i % 3 === 0 ? "Booked" : i % 3 === 1 ? "Follow-up" : "Lead" + })); return ( {call.status} -

{call.snippet}

+

"{call.snippet}"

{call.timestamp}

@@ -66,7 +73,7 @@ export default function CallHistoryPage() {
))}
@@ -79,4 +86,4 @@ export default function CallHistoryPage() { ); -} +} \ No newline at end of file