diff --git a/src/app/page.tsx b/src/app/page.tsx index 87726b6..16314a4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import TeamCardOne from '@/components/sections/team/TeamCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import { Phone, Calendar, Shield, Infinity } from "lucide-react"; export default function LandingPage() { return ( @@ -138,18 +139,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} features={[ - { - id: "f1", title: "Omnichannel Reception", description: "Voice, SMS, and chat synced instantly.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=10"}, - { - id: "f2", title: "Autonomous Scheduling", description: "Real-time calendar sync for all.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=11"}, - { - id: "f3", title: "Instant CRM Injection", description: "Leads pushed in < 1 second.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=12"}, - { - id: "f4", title: "Bilingual Zero-Lag", description: "English & Spanish fluent AI.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=13"}, - { - id: "f5", title: "Emergency Protocols", description: "Smart dispatch logic activated.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=14"}, - { - id: "f6", title: "24/7 Reliability", description: "No sick days, ever.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=15"}, + { id: "f1", title: "Omnichannel Reception", description: "Voice, SMS, and chat synced instantly.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=10" }, + { id: "f2", title: "Autonomous Scheduling", description: "Real-time calendar sync for all.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=11" }, + { id: "f3", title: "Instant CRM Injection", description: "Leads pushed in < 1 second.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=12" }, + { id: "f4", title: "Bilingual Zero-Lag", description: "English & Spanish fluent AI.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=13" }, + { id: "f5", title: "Emergency Protocols", description: "Smart dispatch logic activated.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=14" }, + { id: "f6", title: "24/7 Reliability", description: "No sick days, ever.", imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904330.jpg?_wi=15" }, ]} title="Everything Your Front Office Should Be Doing. Automated." description="Powering the most important tasks of your business." @@ -191,11 +186,11 @@ export default function LandingPage() { useInvertedBackground={false} plans={[ { - id: "starter", badge: "Base", price: "$199/mo", subtitle: "For service businesses", features: [ + id: "starter", badge: "STARTER", price: "$199/mo", subtitle: "For service businesses", features: [ "Inbound calls", "SMS follow-up", "CRM sync"], }, { - id: "operator", badge: "Most Popular", price: "$499/mo", subtitle: "For growing businesses", features: [ + id: "operator", badge: "OPERATOR", price: "$499/mo", subtitle: "For growing businesses", features: [ "Everything in Starter", "Bilingual", "Emergency logic", "Bespoke build"], }, { @@ -205,6 +200,7 @@ export default function LandingPage() { ]} title="Simple Pricing. No Hidden Fees. No Excuses." description="Choose the level of automation that fits your growth." + cardClassName="[&:nth-child(2)]:border-2 [&:nth-child(2)]:border-[#00aaff]" /> @@ -225,6 +221,7 @@ export default function LandingPage() {