Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| db043957d0 | |||
| 209f07249d | |||
| de666f624f | |||
| e25896fb73 | |||
| 24ab002ebf |
58
src/app/call-history/page.tsx
Normal file
58
src/app/call-history/page.tsx
Normal file
@@ -0,0 +1,58 @@
|
||||
"use client";
|
||||
|
||||
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';
|
||||
|
||||
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"
|
||||
]
|
||||
}));
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="none"
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/#features" },
|
||||
{ name: "Live Feed", id: "/#live-feed" },
|
||||
{ name: "Call History", id: "/call-history" },
|
||||
]}
|
||||
brandName="ReceptionistAI"
|
||||
/>
|
||||
</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."
|
||||
textboxLayout="split"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={callData}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -33,6 +33,8 @@ export default function LandingPage() {
|
||||
name: "Features", id: "#features"},
|
||||
{
|
||||
name: "Live Feed", id: "#live-feed"},
|
||||
{
|
||||
name: "Call History", id: "/call-history"},
|
||||
]}
|
||||
brandName="ReceptionistAI"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user