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

Commit db259ec

Browse files
authored
Merge pull request #21 from Timenspace11/vipul
feat: added my profile
2 parents e032ece + 7dd234a commit db259ec

File tree

4 files changed

+86
-1
lines changed

4 files changed

+86
-1
lines changed

src/components/Home.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import Kriti2101066 from "./developers/Kriti2101066.js";
44
import Vivek2101240 from "./developers/Vivek2101240.js";
55
import Sharvil2201228 from "./developers/Sharvil2201228.js";
66
import Shruti2201022 from "./developers/Shruti2201022.js";
7+
import Vipul2101152 from "./developers/Vipul2101152.js";
78

89
const Home = () => {
910
return (
@@ -13,6 +14,7 @@ const Home = () => {
1314
<Vivek2101240 />
1415
<Sharvil2201228/>
1516
<Shruti2201022 />
17+
<Vipul2101152 />
1618
</div>
1719
);
1820
};
1.7 MB
Loading

src/components/developers/Shruti2201022.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const Shruti2201022 = () => {
77
return (
88
<div className="">
99
<div className="pt-16 min-h-lvh ">
10-
<div className="mx-auto max-w-7xl py-24 sm:px-6 sm:py-8 lg:px-8 ">
10+
<div className="mx-auto max-w-7xl py-24 sm:px-6 sm:py-6 lg:px-8 ">
1111
{/* created gradient for the text part */}
1212
<div className="relative isolate overflow-hidden bg-black 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">
1313
<div className="absolute top-0 -left-4 w-72 h-72 bg-pink-400 rounded full shadow-sm mix-blend-multiply filter blur-2xl opacity-70"></div>
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
import React from "react";
2+
import Vipul from "../assets/vipul2101152ec.JPG";
3+
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
4+
import { faLinkedinIn } from "@fortawesome/free-brands-svg-icons";
5+
6+
// add comments wherever required
7+
8+
const Vipul2101152 = () => {
9+
return (
10+
<div>
11+
<div className="bg-white">
12+
<div className="mx-auto max-w-7xl py-24 sm:px-6 sm:py-6 lg:px-8">
13+
<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">
14+
{/* added svg, polygons and gradiance for design */}
15+
<svg
16+
viewBox="0 0 1024 1024"
17+
className="absolute left-1/2 top-1/2 -z-10 h-[64rem] w-[64rem] -translate-y-1/2 [mask-image:radial-gradient(closest-side,white,transparent)] sm:left-full sm:-ml-80 lg:left-1/2 lg:ml-0 lg:-translate-x-1/2 lg:translate-y-0"
18+
aria-hidden="true"
19+
>
20+
<circle
21+
cx={512}
22+
cy={512}
23+
r={512}
24+
fill="url(#759c1415-0410-454c-8f7c-9a820de03641)"
25+
fillOpacity="0.7"
26+
/>
27+
<defs>
28+
<radialGradient id="759c1415-0410-454c-8f7c-9a820de03641">
29+
<stop stopColor="#4361ee" />
30+
<stop offset={4} stopColor="#2eb872" />
31+
</radialGradient>
32+
</defs>
33+
</svg>
34+
<div className="mx-auto max-w-md text-center lg:mx-0 lg:flex-auto lg:py-32 lg:text-left">
35+
<h2 className="text-3xl font-bold tracking-tight text-white sm:text-4xl">
36+
Vipul Kumar Singh
37+
<br />
38+
</h2>
39+
<p className="mt-6 text-lg leading-8 text-gray-300">
40+
A 3rd year student of ECE, MERN stack web developer
41+
</p>
42+
<div className="mt-10 flex items-center justify-center gap-x-6 lg:justify-start">
43+
<a
44+
href="#"
45+
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-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white"
46+
>
47+
ECE
48+
</a>
49+
<a
50+
href="https://www.linkedin.com/in/vipul-kumar-singh-83a733274"
51+
className="text-sm font-semibold leading-6 text-white"
52+
>
53+
<FontAwesomeIcon
54+
icon={faLinkedinIn}
55+
size="2xl"
56+
style={{ color: "#ffffff" }}
57+
/>
58+
</a>
59+
<a
60+
href="https://github.com/Timenspace11"
61+
className="text-sm font-semibold leading-6 text-white"
62+
>
63+
Github <span aria-hidden="true"></span>
64+
</a>
65+
</div>
66+
</div>
67+
<div className="relative mt-16 h-80 lg:mt-8">
68+
<img
69+
className="absolute left-0 top-0 w-[34rem] max-w-none rounded-md bg-white/5 ring-1 ring-white/10"
70+
src={Vipul}
71+
alt="App screenshot"
72+
width={1824}
73+
height={1080}
74+
/>
75+
</div>
76+
</div>
77+
</div>
78+
</div>
79+
</div>
80+
);
81+
};
82+
83+
export default Vipul2101152;

0 commit comments

Comments
 (0)