-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca25fc6
commit e9d1912
Showing
15 changed files
with
129 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
VITE_FORM_ACCESSKEY="ba12c06b-f1ae-4582-932c-00da28515ac0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
const emailjsServiceId = String(import.meta.VITE_EMAILJS_SERVICE_ID) | ||
const emailjsTemplateId = String(import.meta.VITE_EMAILJS_TEMPLATE_ID) | ||
const formAccessKey = import.meta.env.VITE_FORM_ACCESSKEY; | ||
|
||
export default {emailjsServiceId,emailjsTemplateId} | ||
!formAccessKey && console.log("formAccessKey not defined"); | ||
export default { formAccessKey }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import React from 'react' | ||
|
||
const EducationCard = ({degreename,percent,uniname,session="year-year",desc="details of your degree to showcase 💜"}) => { | ||
return degreename && uniname && ( | ||
<div | ||
id={degreename} | ||
className=" left-most w-[90%] md:min-w-[40%] md:min-h-[228px] h-auto flex-col px-4 py-4 items-center border border-black/30 rounded-lg justify-center" | ||
> | ||
<div className="top w-full flex items-center justify-center gap-4 relative border-b-2 border-gray-800/40"> | ||
<img | ||
src="/mduLogo.png" | ||
alt="mdu" | ||
className=" hidden sm:inline-block md:hidden lg:inline-block h-6 absolute top-0 left-0" | ||
/> | ||
<h2 className="skillheader mb-4 w-full text-center text-lg font-semibold text-slate-900"> | ||
{degreename} | ||
</h2> | ||
<p className={`w-[${percent}] h-[2px] rounded-full bg-black absolute -bottom-[2px] left-0`}></p> | ||
<span className=" absolute -bottom-3 right-0 text-xs text-slate-700/50 bg-white px-1 py-1 rounded-lg "> | ||
{percent} | ||
</span> | ||
</div> | ||
<div className="details my-4 flex gap-1 sm:gap-2 items-center justify-between flex-wrap"> | ||
<span className="sm:px-4 px-1 py-2 sm:text-base text-xs font-semibold text-slate-800/70"> | ||
{uniname} | ||
</span> | ||
<span className="sm:px-4 px-1 py-2 text-xs sm:text-sm font-semibold text-slate-800/70"> | ||
|
||
({session}) | ||
</span> | ||
</div> | ||
<p className="edudetails w-[90%] text-slate-800/30 font-semibold text-sm text-justify block mx-auto my-4"> | ||
{desc} | ||
</p> | ||
</div> | ||
) | ||
} | ||
|
||
export default EducationCard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters