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";
|
|
|
|
|
import "./header.css";
|
|
|
|
|
|
|
|
|
|
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>
|
|
|
|
|
<a>Devtools</a>
|
|
|
|
|
</Col>
|
|
|
|
|
<Col>
|
2022-07-18 23:17:31 +05:30
|
|
|
<a href="https://www.linkedin.com/in/amantahiliani/">Contact Me!</a>
|
2022-05-08 19:03:39 +05:30
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Header;
|