Files
Portfolio/src/components/About.js

82 lines
3.1 KiB
JavaScript
Raw Normal View History

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";
2024-06-24 00:12:52 -04:00
import "../css/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";
2025-01-12 23:42:32 -05:00
import resume from "../media/Aman_Tahiliani_Resume.pdf";
2022-05-08 19:03:39 +05:30
// const img = '../media/AmanTahilianiPortfolio.png'
import { library } from "@fortawesome/fontawesome-svg-core";
import { faFileDownload } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
2022-07-18 23:17:31 +05:30
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>
Currently working at <a href="https://rimidi.com/">Rimidi</a>,
2024-06-24 00:15:38 -04:00
a Software as a Service (SaaS) startup, full-time as a
Software Engineer with a special emphasis on data
interoperabiltiy and building a robust set of tools to enable
secure flow of sensitive patient health information across
health systems.
</li>
2022-05-09 00:55:07 +05:30
<li>
Graduated from Georgia Tech in 2024 with a Master's Of Science
degree in Computer Science (MSCS), with emphasis on Computing
Systems and Machine Learning. (#GoJackets{" \uD83D\uDC1D"})
2022-05-09 00:55:07 +05:30
</li>{" "}
<li>
Interned as an SDE (Backend) at{" "}
<a href="https://innovaccer.com/">Innovaccer</a> twice as part
of the Data Activation Platform and Licence
Management/Platform Configuration Teams.{" "}
2022-05-09 00:55:07 +05:30
</li>{" "}
</ul>{" "}
</Row>{" "}
<button
style={{
borderRadius: "0.8em",
width: "auto",
height: "40px",
fontSize: "larger",
backgroundColor: "rgb(5, 255, 180)",
}}
2025-01-12 23:42:32 -05:00
onClick={() => {
const link = document.createElement("a");
link.href = resume;
link.download = "Aman_Tahiliani_Resume.pdf";
link.click();
window.open(resume, "_blank");
}}
>
2025-01-12 23:42:32 -05:00
<FontAwesomeIcon icon="file-download" style={{color: "black", marginRight: "4px"}} />{" "}
<span style={{ color: "black", textDecoration: "none" }}>
Resume
2025-01-12 23:42:32 -05:00
</span>
</button>
2022-05-09 00:55:07 +05:30
</Col>{" "}
</Row>{" "}
2022-05-08 19:03:39 +05:30
</div>
);
}
}
export default About;