|
| 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