import Link from "next/link"; import { ArrowRight, BarChart3, Users, Zap, Shield } from "lucide-react"; export default function LandingPage() { return (
{/* Navigation */} {/* Hero Section */}

The CRM Built for Commercial Real Estate

Streamline your deals, automate follow-ups, and close more transactions with the all-in-one platform designed specifically for CRE professionals.

Start Free Trial Sign In to Dashboard
{/* Features Section */}

Everything You Need to Close More Deals

} title="Contact Management" description="Organize leads, clients, and prospects with smart tagging and segmentation." /> } title="Automation" description="Set up automated follow-up sequences and never miss an opportunity." /> } title="Analytics" description="Track your pipeline, conversion rates, and team performance." /> } title="Integrations" description="Connect with your existing tools and data sources seamlessly." />
{/* Footer */}
); } function FeatureCard({ icon, title, description, }: { icon: React.ReactNode; title: string; description: string; }) { return (
{icon}

{title}

{description}

); }