2022-05-08 19:03:39 +05:30
|
|
|
import React, { Component } from "react";
|
|
|
|
|
import "bootstrap/dist/css/bootstrap.css";
|
|
|
|
|
import { Grid, Row, Col } from "react-bootstrap";
|
|
|
|
|
import "./about.css";
|
2022-05-09 00:55:07 +05:30
|
|
|
import AmanTahilianiPortfolio from "../media/AmanTahilianiPortfolio.png";
|
2022-05-09 02:07:01 +05:30
|
|
|
import { Button } from "bootstrap";
|
2023-01-10 03:13:50 -05:00
|
|
|
import resume from "../media/AmanTahilianiJan23Resume.pdf"
|
2022-05-08 19:03:39 +05:30
|
|
|
// const img = '../media/AmanTahilianiPortfolio.png'
|
2022-07-18 23:17:31 +05:30
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
|
import { faFileDownload } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
|
|
|
|
|
|
|
|
library.add(faFileDownload)
|
2022-05-08 19:03:39 +05:30
|
|
|
|
|
|
|
|
class About extends Component {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
2022-05-09 00:55:07 +05:30
|
|
|
<div className="AboutComponent">
|
2022-05-08 19:03:39 +05:30
|
|
|
<Row>
|
2022-05-09 00:55:07 +05:30
|
|
|
<Col>
|
|
|
|
|
<img src={AmanTahilianiPortfolio} className="NameImage" />
|
|
|
|
|
</Col>{" "}
|
|
|
|
|
<Col className="InfoColumn">
|
|
|
|
|
<Row>
|
|
|
|
|
<h2 style={{ marginTop: "10px" }}> Hi There! </h2>{" "}
|
|
|
|
|
</Row>{" "}
|
|
|
|
|
<Row>
|
|
|
|
|
<h3> Let me tell you a little about myself </h3>{" "}
|
|
|
|
|
</Row>{" "}
|
|
|
|
|
<Row className="Info">
|
|
|
|
|
<ul>
|
|
|
|
|
<li>
|
2022-11-24 00:19:44 -05:00
|
|
|
Currently pursuing a Master's degree from Georgia Institute of Technology majoring in Computer Science with a specialization in Computing Systems. (#GoJackets) {" "}
|
2022-05-09 00:55:07 +05:30
|
|
|
</li>{" "}
|
|
|
|
|
<li>
|
2022-07-18 23:17:31 +05:30
|
|
|
Worked as an SDE Intern(Backend) at{" "}
|
2022-11-24 18:04:18 -05:00
|
|
|
<a href="https://innovaccer.com/">Innovaccer</a> as part of
|
2022-07-18 23:17:31 +05:30
|
|
|
the DAP(Data Activation Platform) alongside my undergraduate BTech. in Computer Science program at Jaypee Institute of Information Technology.{" "}
|
2022-05-09 00:55:07 +05:30
|
|
|
</li>{" "}
|
|
|
|
|
<li>
|
|
|
|
|
I enjoy designing and creating the backend logic for projects
|
|
|
|
|
and am also proficient in frontend development.{" "}
|
|
|
|
|
</li>{" "}
|
|
|
|
|
</ul>{" "}
|
|
|
|
|
</Row>{" "}
|
2023-01-10 03:13:50 -05:00
|
|
|
<button style={{borderRadius:"0.8em", width:"auto",height:"40px", fontSize:"larger", backgroundColor:"rgb(5, 255, 180)"}}><FontAwesomeIcon icon="file-download"/> <a href={resume} style= {{color: "black", textDecoration:"none"}} download="AmanTahilianiJan23Resume.pdf">Resume</a></button>
|
2022-05-09 00:55:07 +05:30
|
|
|
</Col>{" "}
|
|
|
|
|
</Row>{" "}
|
2022-05-08 19:03:39 +05:30
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default About;
|