diff --git a/public/Kevin_Loritsch_Resume.pdf b/public/KevinLoritsch_Resume.pdf similarity index 78% rename from public/Kevin_Loritsch_Resume.pdf rename to public/KevinLoritsch_Resume.pdf index 7a66e4a..9820a84 100644 Binary files a/public/Kevin_Loritsch_Resume.pdf and b/public/KevinLoritsch_Resume.pdf differ diff --git a/public/projects/WhatAboutCheatsheetsAreUsefulPoster.pdf b/public/projects/WhatAboutCheatsheetsAreUsefulPoster.pdf new file mode 100644 index 0000000..c3d81e8 Binary files /dev/null and b/public/projects/WhatAboutCheatsheetsAreUsefulPoster.pdf differ diff --git a/src/app/components/Experience.tsx b/src/app/components/Experience.tsx index 9a2f30b..1edc6ed 100644 --- a/src/app/components/Experience.tsx +++ b/src/app/components/Experience.tsx @@ -14,7 +14,7 @@ const moveUp = { initial: { opacity: 0, y: 30 }, whileInView: { opacity: 1, y: 0 }, transition: { - duration: 0.7, + duration: 0.4, }, }; @@ -22,7 +22,7 @@ const fadeIn = { initial: { opacity: 0, x: -30 }, whileInView: { opacity: 1, x: 0 }, transition: { - duration: 0.7, + duration: 0.4, }, }; @@ -30,7 +30,7 @@ const fadeUp = { initial: { opacity: 0, y: 30 }, whileInView: { opacity: 1, y: 0 }, transition: { - duration: 0.7, + duration: 0.4, }, }; @@ -87,7 +87,7 @@ const Experience = ({ image, name, entries }: experienceProps) => {
{entries.map(({ name, date, description }, i) => ( diff --git a/src/app/components/Landing.tsx b/src/app/components/Landing.tsx index 470b90b..4df42dc 100644 --- a/src/app/components/Landing.tsx +++ b/src/app/components/Landing.tsx @@ -75,7 +75,7 @@ const Landing = () => { > Hi! My name is Kevin, and I am a Computer Science student at UC Riverside (Chancellor's Scholar, 4.0 GPA) with experience in - software engineering, research, and teaching. + software engineering, research, and computer science education. I'm interested in exploring work in algorithm design, AI, diff --git a/src/app/page.tsx b/src/app/page.tsx index cc731e4..c97daa5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,12 +6,12 @@ import Projects from "@/app/components/Projects"; const Home = () => { return ( -
+ <> -
+ ); }; diff --git a/src/data/SocialData.ts b/src/data/SocialData.ts index 2908080..7e67147 100644 --- a/src/data/SocialData.ts +++ b/src/data/SocialData.ts @@ -11,7 +11,7 @@ interface SocialLink { const socialLinks: SocialLink[] = [ { link: "https://github.com/Kevinloritsch", icon: FaGithub }, { link: "https://www.linkedin.com/in/kevin-loritsch/", icon: FaLinkedin }, - { link: "/Kevin_Loritsch_Resume.pdf", icon: LuFileSpreadsheet }, + { link: "/KevinLoritsch_Resume.pdf", icon: LuFileSpreadsheet }, { link: "mailto:klori003@ucr.edu", icon: MdOutlineMarkEmailRead }, ];