Bio.tsx 390 B

123456789101112131415161718
  1. import React from 'react';
  2. interface BioProps {
  3. text: string;
  4. }
  5. const Bio: React.FC<BioProps> = ({ text }) => {
  6. return (
  7. <div className="bg-white rounded-2xl border border-slate-200 p-6">
  8. <h2 className="text-xl font-bold text-slate-800 mb-3">About Me</h2>
  9. <p className="text-slate-600 leading-relaxed">
  10. {text}
  11. </p>
  12. </div>
  13. );
  14. };
  15. export default Bio;