"use client"; import { SmoothLink } from "@/components/providers/NavigationProvider"; import { Button } from "@/components/ui/button"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from "@/components/ui/accordion"; import { FileText, TrendingUp, Users, Calendar, Star, Globe, BarChart3, DollarSign, ChevronDown, Play, } from "lucide-react"; import Header from "@/components/layout/Header"; import Footer from "@/components/layout/Footer"; const features = [ { title: "Invoicing", description: "Create and send professional invoices in minutes. Track payments and automate reminders.", icon: FileText, }, { title: "Bank reconciliation", description: "Automatically match transactions and keep your books balanced without manual entry.", icon: TrendingUp, }, { title: "Payroll", description: "Run payroll in minutes with automatic tax calculations and direct deposit.", icon: Users, }, { title: "Leave management", description: "Track employee time off, approve requests, and maintain accurate leave balances.", icon: Calendar, }, { title: "Performance reviews", description: "Conduct structured performance reviews and track employee development goals.", icon: Star, }, { title: "Multi-jurisdiction tax", description: "Automatically calculate and file taxes across different states and jurisdictions.", icon: Globe, }, ]; const faqs = [ { question: "Is Vela really free?", answer: "Vela offers a free tier for up to 5 employees. For larger teams, our paid plans start at just $49/month - significantly less than enterprise solutions.", }, { question: "Which countries are supported for payroll?", answer: "We currently support payroll processing in the United States, Canada, UK, and Australia. We're actively expanding to more countries.", }, // { // question: "Can I migrate from Xero or QuickBooks?", // answer: // "Yes! We provide free migration tools and support to transfer your data from Xero, QuickBooks, and other major accounting platforms.", // }, { question: "How does multi-user access work?", answer: "Each team member gets their own login with role-based permissions. Owners can control who can view reports, process payroll, or manage employee data.", }, { question: "Is my financial data secure?", answer: "Absolutely. We use bank-level encryption, regular security audits, and comply with SOC 2 and GDPR standards to protect your data.", }, ]; // Product Mockup Component function ProductMockup() { return (
{/* Browser Frame */}
vela.app/dashboard
{/* Dashboard Content */}
{/* Metrics Cards */}
Cash on hand
$45,230
Outstanding
$12,450
Payroll due
$8,750
Headcount
24
{/* Mini Bar Chart */}
Revenue Trend
{/* Employee List */}
Recent Activity
Sarah Johnson Active
Mike Chen Active
Emily Davis Leave
); } export default function LandingPage() { return (
{/* Hero Section */}
{/* Left Column */}

One platform for your entire business.

Vela combines accounting, HR, payroll, and team communications in one place. Pay only for what you use.

{/* CTA Buttons */}
{/* Trust Signals */}
No credit card required · Free forever for small teams · Cancel anytime
{/* Right Column - Product Mockup */}
{/* Social Proof Bar */}
Trusted by small businesses across 7 countries
Meridian Co {" "} ·{" "} Foxlane Group {" "} ·{" "} Nuvelo Studio {" "} ·{" "} Brightpath {" "} ·{" "} Castlerock Advisory
{/* Features Section */}

Everything you need to run your business

From invoicing to payroll, Vela brings together all the tools you need in one simple, affordable platform.

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* FAQ Section */}

Frequently Asked Questions

Everything you need to know about Vela

{faqs.map((faq, index) => ( {faq.question} {faq.answer} ))}
{/* Testimonial Section */}
"

Vela transformed how we run our business. We went from juggling two separate tools for accounting and HR to having everything in one place. The time savings alone paid for the subscription in the first month.

Alex Thompson
CEO, TechStart Solutions
); }