From 0749a0273a50eac00539e1994c447ecad3720e73 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 01:57:45 +0000 Subject: [PATCH 1/2] Update src/app/call-history/page.tsx --- src/app/call-history/page.tsx | 55 +++++++++++++++++++++++++---------- 1 file changed, 39 insertions(+), 16 deletions(-) diff --git a/src/app/call-history/page.tsx b/src/app/call-history/page.tsx index 7ebccad..7d9b423 100644 --- a/src/app/call-history/page.tsx +++ b/src/app/call-history/page.tsx @@ -3,19 +3,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TimelinePhoneView from '@/components/cardStack/layouts/timelines/TimelinePhoneView'; +import CardStack from '@/components/cardStack/CardStack'; +import { Mic, CheckCircle2, Clock } from "lucide-react"; export default function CallHistoryPage() { const callData = Array.from({ length: 15 }).map((_, i) => ({ - trigger: `Prospect #${1000 + i}`, - content: ( -
-

{i % 2 === 0 ? 'Lead, High-Intent' : 'Inquiry, Pricing'}

-

Snippet: "Hello, I'm interested in the {i % 2 === 0 ? 'premium' : 'standard'} plan..."

-
- ), - imageOne: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfrrA4gAjraum2ii37r2QQ6tll/uploaded-1775612696144-jqzjl02r.png", imageAltOne: "Audio Wave Interaction UI" - })); + id: `call-${i}`, + name: ["Sarah Jenkins", "Ahmed Al-Mansoori", "Elena Rossi", "Mark Z", "Jane Doe"][i % 5], + timestamp: "2h ago", snippet: i % 2 === 0 + ? "Interest confirmed in the premium tier, scheduling demo." + : "Standard inquiry regarding service availability.", status: i % 3 === 0 ? "Booked" : "Lead"})); return (
- + className="max-w-4xl mx-auto" + > +
+ {callData.map((call) => ( +
+
+

+ {call.name} + {call.status} +

+

{call.snippet}

+

{call.timestamp}

+
+
+
+ {[...Array(6)].map((_, j) => ( +
+ ))} +
+
+
+ ))} +
+
); -} \ No newline at end of file +} -- 2.49.1 From f14777a2a79de9af93117ce1a7e0b31e99b313ef Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 01:57:45 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f3cd100..b6acb5b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -136,4 +136,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1