Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e75b933c6a | |||
| 65f4abd0fc | |||
| f158d6baa0 | |||
| 9574a73e1b | |||
| e2a3d704e0 | |||
| 63728d296b | |||
| 7a82845411 | |||
| e483d9fced | |||
| 9af763013d | |||
| 4a3cb052fb | |||
| be738d81ca |
@@ -2,18 +2,19 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
import TimelinePhoneView from '@/components/cardStack/layouts/timelines/TimelinePhoneView';
|
||||||
|
|
||||||
export default function CallHistoryPage() {
|
export default function CallHistoryPage() {
|
||||||
const callData = Array.from({ length: 15 }).map((_, i) => ({
|
const callData = Array.from({ length: 15 }).map((_, i) => ({
|
||||||
id: `call-${i}`,
|
trigger: `Prospect #${1000 + i}`,
|
||||||
label: `Interaction ${i + 1}`,
|
content: (
|
||||||
title: `Customer #${1000 + i}`,
|
<div className="p-4">
|
||||||
items: [
|
<p className="text-sm opacity-80 mb-2">{i % 2 === 0 ? 'Lead, High-Intent' : 'Inquiry, Pricing'}</p>
|
||||||
`Timestamp: ${new Date(Date.now() - i * 3600000).toLocaleString()}`,
|
<p className="text-md font-medium">Snippet: "Hello, I'm interested in the {i % 2 === 0 ? 'premium' : 'standard'} plan..."</p>
|
||||||
"Status: Successfully handled by AI", "Confidence: 98%", "Action: Booked Appointment"
|
</div>
|
||||||
]
|
),
|
||||||
|
imageOne: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfrrA4gAjraum2ii37r2QQ6tll/uploaded-1775612696144-jqzjl02r.png", imageAltOne: "Audio Wave Interaction UI"
|
||||||
}));
|
}));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -31,7 +32,7 @@ export default function CallHistoryPage() {
|
|||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Features", id: "/#features" },
|
{ name: "Features", id: "/#features" },
|
||||||
@@ -39,17 +40,17 @@ export default function CallHistoryPage() {
|
|||||||
{ name: "Call History", id: "/call-history" },
|
{ name: "Call History", id: "/call-history" },
|
||||||
]}
|
]}
|
||||||
brandName="ReceptionistAI"
|
brandName="ReceptionistAI"
|
||||||
|
button={{ text: "Get Started", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="call-history-list" className="pt-32 pb-20">
|
<div id="call-history-list" data-section="call-history-list" className="pt-32 pb-20">
|
||||||
<FeatureCardTwelve
|
<TimelinePhoneView
|
||||||
title="Call Interaction History"
|
title="Active Call Interactions"
|
||||||
description="Review the detailed log of all 15 recent receptionist interactions."
|
description="Real-time audio wave analysis and prospect conversation snippets."
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
animationType="slide-up"
|
animationType="blur-reveal"
|
||||||
useInvertedBackground={false}
|
items={callData}
|
||||||
features={callData}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user