// components/shared/ApplicationsLayout.jsx const ApplicationsLayout = ({ title = "Applications", applicationItems = [], backgroundColor = "bg-gray-50", titleColor = "text-gray-700" }) => { return (

{title}

); }; export default ApplicationsLayout;