9 Commits

Author SHA1 Message Date
63728d296b Update src/app/call-history/page.tsx 2026-04-08 01:46:05 +00:00
e483d9fced Update src/app/call-history/page.tsx 2026-04-08 01:45:35 +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
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 56 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
export default function CallHistoryPage() {
const callData = Array.from({ length: 15 }).map((_, i) => ({
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 (
<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">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Live Feed", id: "/#live-feed" },
{ name: "Call History", id: "/call-history" },
]}
brandName="ReceptionistAI"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="call-history-list" data-section="call-history-list" className="pt-32 pb-20">
<FeatureCardEight
title="Active Call Interactions"
description="Real-time audio wave analysis and prospect conversation snippets."
textboxLayout="split"
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"
/>