// components/portfolio/PortfolioExecutiveSummary.tsx import { motion } from "framer-motion"; interface PortfolioExecutiveSummaryProps { title?: string; content: string; backgroundColor?: string; } export const PortfolioExecutiveSummary = ({ title = "Executive Summary", content, backgroundColor = "bg-card/30" }: PortfolioExecutiveSummaryProps) => { return (

{title}

{content}

); };