2022-05-08 19:03:39 +05:30
|
|
|
import React, { Component } from "react";
|
|
|
|
|
import "bootstrap/dist/css/bootstrap.css";
|
|
|
|
|
import { Row, Col } from "react-bootstrap";
|
2024-06-24 00:12:52 -04:00
|
|
|
import "../css/header.css";
|
2022-05-08 19:03:39 +05:30
|
|
|
|
|
|
|
|
class Header extends Component {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<header className="header">
|
|
|
|
|
<div className="menu-header">
|
|
|
|
|
<Row style={{ height: "100%" }}>
|
|
|
|
|
<Col xs={12} md={5}>
|
|
|
|
|
<Row className="navRow nonNameCol">
|
|
|
|
|
<Col>
|
|
|
|
|
<a href="./">Home</a>
|
|
|
|
|
</Col>
|
|
|
|
|
<Col>
|
2022-05-08 23:27:29 +05:30
|
|
|
<a href="#About">About</a>
|
2022-05-08 19:03:39 +05:30
|
|
|
</Col>
|
|
|
|
|
<Col>
|
2022-05-08 23:27:29 +05:30
|
|
|
<a href="#Publications">Publications</a>
|
2022-05-08 19:03:39 +05:30
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</Col>
|
|
|
|
|
<Col xs={12} md={2} className="navRow NameCol">
|
|
|
|
|
Aman Tahiliani
|
|
|
|
|
</Col>
|
|
|
|
|
<Col xs={12} md={5}>
|
|
|
|
|
<Row className="navRow nonNameCol">
|
|
|
|
|
<Col>
|
2022-07-18 23:17:31 +05:30
|
|
|
<a href="#Experience">Experience</a>
|
2022-05-08 19:03:39 +05:30
|
|
|
</Col>
|
|
|
|
|
<Col>
|
2024-06-24 00:12:52 -04:00
|
|
|
<a href="#DevTools">Devtools</a>
|
2022-05-08 19:03:39 +05:30
|
|
|
</Col>
|
|
|
|
|
<Col>
|
2024-06-24 00:12:52 -04:00
|
|
|
<a
|
|
|
|
|
href="https://www.linkedin.com/in/amantahiliani/"
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
>
|
|
|
|
|
Contact Me!
|
|
|
|
|
</a>
|
2022-05-08 19:03:39 +05:30
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Header;
|