Update src/app/call-history/page.tsx
This commit is contained in:
@@ -3,17 +3,13 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
|
||||
export default function CallHistoryPage() {
|
||||
const callData = Array.from({ length: 15 }).map((_, i) => ({
|
||||
id: `call-${i}`,
|
||||
label: `Interaction ${i + 1}`,
|
||||
title: `Customer #${1000 + i}`,
|
||||
items: [
|
||||
`Timestamp: ${new Date(Date.now() - i * 3600000).toLocaleString()}`,
|
||||
"Status: Successfully handled by AI", "Confidence: 98%", "Action: Booked Appointment"
|
||||
]
|
||||
title: `Prospect #${1000 + i}`,
|
||||
description: `Snippet: "Hello, I'm interested in the ${i % 2 === 0 ? 'premium' : 'standard'} plan..." | Tags: ${i % 2 === 0 ? 'Lead, High-Intent' : 'Inquiry, Pricing'}`,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfrrA4gAjraum2ii37r2QQ6tll/uploaded-1775612696144-jqzjl02r.png", imageAlt: "Audio Wave Interaction UI"
|
||||
}));
|
||||
|
||||
return (
|
||||
@@ -43,9 +39,9 @@ export default function CallHistoryPage() {
|
||||
</div>
|
||||
|
||||
<div id="call-history-list" className="pt-32 pb-20">
|
||||
<FeatureCardTwelve
|
||||
title="Call Interaction History"
|
||||
description="Review the detailed log of all 15 recent receptionist interactions."
|
||||
<FeatureCardEight
|
||||
title="Active Call Interactions"
|
||||
description="Real-time audio wave analysis and prospect conversation snippets."
|
||||
textboxLayout="split"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -55,4 +51,4 @@ export default function CallHistoryPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user