File size: 1,429 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
import React from "react";
import Card from "react-bootstrap/Card";
import { ImPointRight } from "react-icons/im";
function AboutCard() {
return (
<Card className="quote-card-view">
<Card.Body>
<blockquote className="blockquote mb-0">
<p style={{ textAlign: "justify" }}>
Hi Everyone, I am <span className="purple">Soumyajit Behera </span>
from <span className="purple"> Bhubaneswar, India.</span>
<br />
I am currently employed as a software developer at Juspay.
<br />
I have completed Integrated MSc (IMSc) in Maths and Computing at BIT
Mesra.
<br />
<br />
Apart from coding, some other activities that I love to do!
</p>
<ul>
<li className="about-activity">
<ImPointRight /> Playing Games
</li>
<li className="about-activity">
<ImPointRight /> Writing Tech Blogs
</li>
<li className="about-activity">
<ImPointRight /> Travelling
</li>
</ul>
<p style={{ color: "rgb(155 126 172)" }}>
"Strive to build things that make a difference!"{" "}
</p>
<footer className="blockquote-footer">Soumyajit</footer>
</blockquote>
</Card.Body>
</Card>
);
}
export default AboutCard;
|