Spaces:
Sleeping
Sleeping
File size: 568 Bytes
ea9ca44 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import React from 'react';
const PlaceholderContent = ({ title, message, icon }) => (
<div style={{ backgroundColor: 'rgba(255, 255, 255, 0.05)', borderRadius: '1rem', padding: '4rem', textAlign: 'center', border: '1px solid rgba(255, 255, 255, 0.2)', display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center' }}>
{icon}
<h2 style={{ fontSize: '1.5rem', fontWeight: 'bold' }}>{title}</h2>
<p style={{ color: '#d1d5db', marginTop: '0.5rem' }}>{message}</p>
</div>
);
export default PlaceholderContent;
|