import React from "react"; import { motion } from "framer-motion"; import { Check, ArrowRight, Upload, Clock, Shield, Phone, Mail, MapPin, Printer } from "lucide-react"; /** * Next Day Funeral Programs — Website Draft (Dark Purple / White / Yellow Theme) */ const palette = { primary: "#3B0069", // deep dark purple primaryDark: "#2A004D", accent: "#FFD700", // bright yellow bg: "#FFFFFF", // white background ink: "#1E1B1A", // dark text lightBg: "#F9F9F9", }; const Section = ({ id, className = "", children }) => (
{children}
); const Pill = ({ children }) => ( {children} ); const Feature = ({ icon: Icon, title, children }) => (

{title}

{children}

); const Stat = ({ value, label }) => (
{value}
{label}
); const PriceCard = ({ title, price, features, cta }) => (

{title}

${price}
per 8-page booklet (100 lb gloss, full color)
    {features.map((f, i) => (
  • {f}
  • ))}