Spaces:
Running
Running
File size: 529 Bytes
4fb0c68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import '../styles/PrivacyPolicy.css';
const PrivacyPolicy = () => {
return (
<div className="min-h-screen flex items-center justify-center bg-gradient-to-r from-purple-400 via-pink-500 to-blue-500">
<div className="bg-white p-8 rounded-lg shadow-md w-full max-w-4xl">
<h2 className="text-2xl font-bold mb-6 text-center">Privacy Policy</h2>
<p className="text-gray-700">
// Insert your privacy policy content here.
</p>
</div>
</div>
);
};
export default PrivacyPolicy;
|