Skip to content

Commit

Permalink
Merge pull request #21 from Timenspace11/vipul
Browse files Browse the repository at this point in the history
feat: added my profile
  • Loading branch information
kriti-raj authored Apr 3, 2024
2 parents e032ece + 7dd234a commit db259ec
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Kriti2101066 from "./developers/Kriti2101066.js";
import Vivek2101240 from "./developers/Vivek2101240.js";
import Sharvil2201228 from "./developers/Sharvil2201228.js";
import Shruti2201022 from "./developers/Shruti2201022.js";
import Vipul2101152 from "./developers/Vipul2101152.js";

const Home = () => {
return (
Expand All @@ -13,6 +14,7 @@ const Home = () => {
<Vivek2101240 />
<Sharvil2201228/>
<Shruti2201022 />
<Vipul2101152 />
</div>
);
};
Expand Down
Binary file added src/components/assets/vipul2101152ec.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/developers/Shruti2201022.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Shruti2201022 = () => {
return (
<div className="">
<div className="pt-16 min-h-lvh ">
<div className="mx-auto max-w-7xl py-24 sm:px-6 sm:py-8 lg:px-8 ">
<div className="mx-auto max-w-7xl py-24 sm:px-6 sm:py-6 lg:px-8 ">
{/* created gradient for the text part */}
<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">
<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>
Expand Down
83 changes: 83 additions & 0 deletions src/components/developers/Vipul2101152.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
import React from "react";
import Vipul from "../assets/vipul2101152ec.JPG";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faLinkedinIn } from "@fortawesome/free-brands-svg-icons";

// add comments wherever required

const Vipul2101152 = () => {
return (
<div>
<div className="bg-white">
<div className="mx-auto max-w-7xl py-24 sm:px-6 sm:py-6 lg:px-8">
<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">
{/* added svg, polygons and gradiance for design */}
<svg
viewBox="0 0 1024 1024"
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"
aria-hidden="true"
>
<circle
cx={512}
cy={512}
r={512}
fill="url(#759c1415-0410-454c-8f7c-9a820de03641)"
fillOpacity="0.7"
/>
<defs>
<radialGradient id="759c1415-0410-454c-8f7c-9a820de03641">
<stop stopColor="#4361ee" />
<stop offset={4} stopColor="#2eb872" />
</radialGradient>
</defs>
</svg>
<div className="mx-auto max-w-md text-center lg:mx-0 lg:flex-auto lg:py-32 lg:text-left">
<h2 className="text-3xl font-bold tracking-tight text-white sm:text-4xl">
Vipul Kumar Singh
<br />
</h2>
<p className="mt-6 text-lg leading-8 text-gray-300">
A 3rd year student of ECE, MERN stack web developer
</p>
<div className="mt-10 flex items-center justify-center gap-x-6 lg:justify-start">
<a
href="#"
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"
>
ECE
</a>
<a
href="https://www.linkedin.com/in/vipul-kumar-singh-83a733274"
className="text-sm font-semibold leading-6 text-white"
>
<FontAwesomeIcon
icon={faLinkedinIn}
size="2xl"
style={{ color: "#ffffff" }}
/>
</a>
<a
href="https://github.com/Timenspace11"
className="text-sm font-semibold leading-6 text-white"
>
Github <span aria-hidden="true"></span>
</a>
</div>
</div>
<div className="relative mt-16 h-80 lg:mt-8">
<img
className="absolute left-0 top-0 w-[34rem] max-w-none rounded-md bg-white/5 ring-1 ring-white/10"
src={Vipul}
alt="App screenshot"
width={1824}
height={1080}
/>
</div>
</div>
</div>
</div>
</div>
);
};

export default Vipul2101152;

0 comments on commit db259ec

Please sign in to comment.