Initial Commit

This commit is contained in:
Aman Tahiliani
2022-05-08 19:03:39 +05:30
parent 95cc719f49
commit 1a1dee40db
9 changed files with 407 additions and 42 deletions

50
src/components/Header.js Normal file
View File

@@ -0,0 +1,50 @@
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>
<a>About</a>
</Col>
<Col>
<a>Publications</a>
</Col>
</Row>
</Col>
<Col xs={12} md={2} className="navRow NameCol">
Aman Tahiliani
</Col>
<Col xs={12} md={5}>
<Row className="navRow nonNameCol">
<Col>
<a>Experience</a>
</Col>
<Col>
<a>Devtools</a>
</Col>
<Col>
<a>Contact Me!</a>
</Col>
</Row>
</Col>
</Row>
</div>
</header>
</div>
);
}
}
export default Header;