8 Commits

Author SHA1 Message Date
9574a73e1b Update src/app/call-history/page.tsx 2026-04-08 01:47:48 +00:00
e2a3d704e0 Merge version_3 into main
Merge version_3 into main
2026-04-08 01:46:11 +00:00
63728d296b Update src/app/call-history/page.tsx 2026-04-08 01:46:05 +00:00
7a82845411 Merge version_3 into main
Merge version_3 into main
2026-04-08 01:45:38 +00:00
e483d9fced Update src/app/call-history/page.tsx 2026-04-08 01:45:35 +00:00
9af763013d Merge version_3 into main
Merge version_3 into main
2026-04-08 01:45:13 +00:00
4a3cb052fb Update src/app/call-history/page.tsx 2026-04-08 01:45:07 +00:00
be738d81ca Merge version_2 into main
Merge version_2 into main
2026-04-08 01:39:55 +00:00

View File

@@ -2,18 +2,14 @@
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 NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
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 (
@@ -31,7 +27,7 @@ export default function CallHistoryPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
@@ -39,15 +35,15 @@ export default function CallHistoryPage() {
{ name: "Call History", id: "/call-history" },
]}
brandName="ReceptionistAI"
button={{ text: "Get Started", href: "/contact" }}
/>
</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."
<div id="call-history-list" data-section="call-history-list" className="pt-32 pb-20">
<FeatureCardSix
title="Active Call Interactions"
description="Real-time audio wave analysis and prospect conversation snippets."
textboxLayout="split"
animationType="slide-up"
useInvertedBackground={false}
features={callData}
/>
@@ -55,4 +51,4 @@ export default function CallHistoryPage() {
</ReactLenis>
</ThemeProvider>
);
}
}