Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Commit 8dcadd2

Browse files
authored
Merge pull request #22 from ManishKumar2515/main
feat: manish2101163ec profile added
2 parents db259ec + 3c244bb commit 8dcadd2

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed

src/components/Home.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import Vivek2101240 from "./developers/Vivek2101240.js";
55
import Sharvil2201228 from "./developers/Sharvil2201228.js";
66
import Shruti2201022 from "./developers/Shruti2201022.js";
77
import Vipul2101152 from "./developers/Vipul2101152.js";
8+
import Manish2101163 from "./developers/Manish2101163.js";
89

910
const Home = () => {
1011
return (
@@ -15,6 +16,7 @@ const Home = () => {
1516
<Sharvil2201228/>
1617
<Shruti2201022 />
1718
<Vipul2101152 />
19+
<Manish2101163/>
1820
</div>
1921
);
2022
};
1.18 MB
Loading
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import React from "react";
2+
import Manish from '../assets/Manish2101163ec.JPG';
3+
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
4+
import { faLinkedinIn } from "@fortawesome/free-brands-svg-icons";
5+
6+
const Manish2101163 = () => (
7+
<>
8+
<div className="pt-16 min-h-lvh">
9+
<div className="mx-auto max-w-7xl py-24 px-4 sm:px-6 lg:px-8">
10+
<div className="relative isolate overflow-hidden bg-gray-700 px-6 pt-16 shadow-2xl sm:rounded-3xl sm:px-16 md:pt-24 lg:flex lg:gap-x-20 lg:px-24 lg:pt-0">
11+
12+
<div className="mx-auto max-w-md text-center lg:mx-0 lg:flex-auto lg:py-32 lg:text-left">
13+
<h2 className="text-3xl font-bold tracking-tight text-white sm:text-4xl">
14+
Manish Kumar
15+
</h2>
16+
<p className="mt-6 text-lg leading-8 text-gray-300">
17+
A 3rd year student of Electronics And Communication Engineering, and Full stack web developer
18+
</p>
19+
<div className="mt-10 flex items-center justify-center gap-x-6 lg:justify-start">
20+
<button
21+
type="button"
22+
className="rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm hover:bg-gray-100 focus:outline-none focus:ring focus:ring-gray-300 focus:ring-opacity-50"
23+
>
24+
ECE
25+
</button>
26+
<a
27+
href="https://www.linkedin.com/in/manish-kumar-aaa77b250/"
28+
className="text-sm font-semibold leading-6 text-white"
29+
>
30+
<FontAwesomeIcon icon={faLinkedinIn} size="2xl" style={{ color: "#ffffff", }} />
31+
</a>
32+
<a
33+
href="https://github.com/ManishKumar2515"
34+
className="text-sm font-semibold leading-6 text-white"
35+
>
36+
Github <span aria-hidden="true"></span>
37+
</a>
38+
</div>
39+
</div>
40+
<div className="relative mt-16 h-80 lg:mt-8 lg:h-auto">
41+
<img
42+
className="absolute left-0 top-0 w-full max-w-none rounded-md bg-white/5 ring-1 ring-white/10 sm:w-[32rem]"
43+
src={Manish}
44+
alt=""
45+
width={1824}
46+
height={1080}
47+
/>
48+
</div>
49+
</div>
50+
</div>
51+
</div>
52+
</>
53+
);
54+
55+
export default Manish2101163;

0 commit comments

Comments
 (0)