5 Commits

Author SHA1 Message Date
db043957d0 Update src/app/page.tsx 2026-04-08 01:39:52 +00:00
209f07249d Add src/app/call-history/page.tsx 2026-04-08 01:39:52 +00:00
de666f624f Merge version_1 into main
Merge version_1 into main
2026-04-08 01:37:29 +00:00
e25896fb73 Merge version_1 into main
Merge version_1 into main
2026-04-08 01:37:05 +00:00
24ab002ebf Merge version_1 into main
Merge version_1 into main
2026-04-08 01:36:41 +00:00
2 changed files with 60 additions and 0 deletions

View 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>
);
}

View File

@@ -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"
/>