chore: edits to ui

This commit is contained in:
Harivansh Rathi 2025-01-03 19:24:49 +05:30
parent 1b599490ae
commit 79615758d4
3 changed files with 148 additions and 148 deletions

View file

@ -4,6 +4,7 @@ import { VscGrabber, VscClose } from "react-icons/vsc";
import { Link } from "react-router-dom";
import { logotext ,socialprofils } from "../content_option";
import Themetoggle from "../components/themetoggle";
import { Socialicons } from "../components/socialicons";
const Headermain = () => {
const [isActive, setActive] = useState("false");
@ -50,13 +51,10 @@ const Headermain = () => {
</div>
</div>
</div>
<div className="menu_footer d-flex flex-column flex-md-row justify-content-between align-items-md-center position-absolute w-100 p-3">
<div className="menu_footer d-flex flex-column flex-md-row justify-content-center align-items-md-center position-absolute w-100 p-3">
<div className="d-flex">
<a href={socialprofils.github}>Github</a>
<a href={socialprofils.linkedin}>LinkedIn</a>
<a href={socialprofils.portfolio}>Resume</a>
<Socialicons />
</div>
<p className="copyright m-0">copyright __ {logotext}</p>
</div>
</div>
</header>

View file

@ -141,7 +141,7 @@
background-color: var(--primary-color);
will-change: transform;
transform: translateY(-100%);
transition: .5s ease all;
transition: 0.5s ease all;
}
.menu__opend .bg__menu {
@ -156,17 +156,19 @@
}
.the_menu {
padding-top: 20vh;
padding-bottom: 20vh;
padding-top: 40vh;
padding-bottom: 10vh;
padding-left: 0;
text-align: center;
}
@media (min-width: 992px) {
.menu__container {
margin-left: 33.3333%;
margin-left: 0;
text-align: center;
}
.the_menu {
padding-top: 10vh;
padding-top: 30vh;
padding-bottom: 10vh;
}
}

View file

@ -54,6 +54,29 @@ export const About = () => {
</table>
</Col>
</Row>
<Row className="sec_sp">
<Col lg="5">
<h3 className="color_sec py-4">Education</h3>
</Col>
<Col lg="7">
<div>
<p>
<strong>University of Virginia, Charlottesville, VA</strong>
<br />
Bachelor of Arts, Computer Science
<br />
Expected May 2026
<br />
Cumulative GPA: 3.55/4.0
<br />
Relevant Coursework:
<br />
Data structures and algo, Computer systems and organization,
Software dev essentials
</p>
</div>
</Col>
</Row>
<Row className="sec_sp">
<Col lg="5">
<h3 className="color_sec py-4">Skills</h3>
@ -78,29 +101,6 @@ export const About = () => {
})}
</Col>
</Row>
<Row className="sec_sp">
<Col lg="5">
<h3 className="color_sec py-4">Education</h3>
</Col>
<Col lg="7">
<div>
<p>
<strong>University of Virginia, Charlottesville, VA</strong>
<br />
Bachelor of Arts, Computer Science
<br />
Expected May 2026
<br />
Cumulative GPA: 3.55/4.0
<br />
Relevant Coursework:
<br />
Data structures and algo, Computer systems and organization,
Software dev essentials
</p>
</div>
</Col>
</Row>
</Container>
</HelmetProvider>
);