Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file not shown.
8 changes: 4 additions & 4 deletions src/app/components/Experience.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ const moveUp = {
initial: { opacity: 0, y: 30 },
whileInView: { opacity: 1, y: 0 },
transition: {
duration: 0.7,
duration: 0.4,
},
};

const fadeIn = {
initial: { opacity: 0, x: -30 },
whileInView: { opacity: 1, x: 0 },
transition: {
duration: 0.7,
duration: 0.4,
},
};

const fadeUp = {
initial: { opacity: 0, y: 30 },
whileInView: { opacity: 1, y: 0 },
transition: {
duration: 0.7,
duration: 0.4,
},
};

Expand Down Expand Up @@ -87,7 +87,7 @@ const Experience = ({ image, name, entries }: experienceProps) => {
<div className="border-gray w-full justify-center border-l-2 md:w-5/6">
{entries.map(({ name, date, description }, i) => (
<motion.div
{...slideIn(i / 3)}
{...slideIn(i / 5)}
key={i}
className="relative flex flex-row py-2"
>
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
</motion.p>
<motion.p {...slideLeft} className="text-center md:text-left">
I'm interested in exploring work in algorithm design, AI,
Expand Down
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import Projects from "@/app/components/Projects";

const Home = () => {
return (
<div>
<>
<Landing />
<About />
<Experiences />
<Projects />
</div>
</>
);
};

Expand Down
2 changes: 1 addition & 1 deletion src/data/SocialData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
];

Expand Down
Loading