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

Commit e032ece

Browse files
authored
Merge pull request #7 from ShrutiShahi18/main
feat: added new profile information of @ShrutiShahi18
2 parents e0b0e1f + f6517f6 commit e032ece

3 files changed

Lines changed: 78 additions & 9 deletions

File tree

src/components/Home.js

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import React from "react";
2-
import Navbar from '../Navbar.js'
2+
import Navbar from "../Navbar.js";
33
import Kriti2101066 from "./developers/Kriti2101066.js";
44
import Vivek2101240 from "./developers/Vivek2101240.js";
55
import Sharvil2201228 from "./developers/Sharvil2201228.js";
6+
import Shruti2201022 from "./developers/Shruti2201022.js";
67

78
const Home = () => {
8-
return (
9-
<div className="bg-white">
10-
<Navbar />
11-
<Kriti2101066 />
12-
<Vivek2101240 />
13-
<Sharvil2201228/>
14-
</div>
15-
);
9+
return (
10+
<div className="bg-white">
11+
<Navbar />
12+
<Kriti2101066 />
13+
<Vivek2101240 />
14+
<Sharvil2201228/>
15+
<Shruti2201022 />
16+
</div>
17+
);
1618
};
1719

1820
export default Home;
117 KB
Loading
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
import React from "react";
2+
import Shruti from "../assets/Shruti Shahi.jpg";
3+
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
4+
import { faLinkedinIn } from "@fortawesome/free-brands-svg-icons";
5+
6+
const Shruti2201022 = () => {
7+
return (
8+
<div className="">
9+
<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 ">
11+
{/* created gradient for the text part */}
12+
<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">
13+
<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>
14+
<div className="absolute top-0 -right-4 w-72 h-72 bg-purple-500 rounded full shadow-sm mix-blend-multiply filter blur-2xl opacity-70"></div>
15+
<div className="absolute top-8 right-20 w-72 h-72 bg-blue-600 rounded full shadow-sm mix-blend-multiply filter blur-2xl opacity-70"></div>
16+
<div className="absolute -bottom-8 right-20 w-72 h-72 bg-yellow-400 rounded full shadow-sm mix-blend-multiply filter blur-2xl opacity-70"></div>
17+
<div className="mx-auto max-w-md text-center lg:mx-0 lg:flex-auto lg:py-32 lg:text-left">
18+
<h2 className="text-3xl font-bold tracking-tight text-white sm:text-4xl">
19+
Shruti Shahi
20+
<br />
21+
</h2>
22+
<p className="mt-6 text-lg leading-8 text-gray-300">
23+
A 2nd year student of CSE branch and a web
24+
development enthusiast.
25+
</p>
26+
<div className="mt-10 flex items-center justify-center gap-x-6 lg:justify-start">
27+
<a
28+
href="/"
29+
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"
30+
>
31+
CSE
32+
</a>
33+
<a
34+
href="https://www.linkedin.com/in/shruti-shahi180803/"
35+
className="text-sm font-semibold leading-6 text-white"
36+
>
37+
<FontAwesomeIcon
38+
icon={faLinkedinIn}
39+
size="2xl"
40+
style={{ color: "#ffffff" }}
41+
/>
42+
</a>
43+
<a
44+
href="https://github.com/ShrutiShahi18"
45+
className="text-sm font-semibold leading-6 text-white"
46+
>
47+
Github <span aria-hidden="true"></span>
48+
</a>
49+
</div>
50+
</div>
51+
<div className="relative mt-16 h-80 lg:mt-8">
52+
<img
53+
className="absolute left-0 top-0 w-[32rem] max-w-none rounded-md bg-white/5 ring-1 ring-white/10"
54+
src={Shruti}
55+
alt=""
56+
width={1824}
57+
height={1080}
58+
/>
59+
</div>
60+
</div>
61+
</div>
62+
</div>
63+
</div>
64+
);
65+
};
66+
67+
export default Shruti2201022;

0 commit comments

Comments
 (0)