Skip to content

Commit

Permalink
touchups
Browse files Browse the repository at this point in the history
  • Loading branch information
thatcatcancode committed Dec 2, 2023
1 parent dc78f58 commit bcb8b62
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
10 changes: 8 additions & 2 deletions components/contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from "react";
import SectionHeading from "./section-heading";
import { motion } from "framer-motion";
import { useSectionInView } from "@/lib/hooks";
import { FaGithubSquare } from "react-icons/fa";
import { FaGithubSquare, FaMediumM } from "react-icons/fa";
import { BsLinkedin } from "react-icons/bs";
import { LuMail } from "react-icons/lu";

Expand Down Expand Up @@ -51,7 +51,13 @@ export default function Contact() {
>
<BsLinkedin />
</a>

<a
className="bg-white p-4 text-gray-700 flex items-center gap-2 text-[1.35rem] rounded-full focus:scale-[1.15] hover:scale-[1.15] hover:text-gray-950 active:scale-105 transition cursor-pointer borderBlack dark:bg-white/10 dark:text-white/60"
href="https://medium.com/@leeadams1414"
target="_blank"
>
<FaMediumM />
</a>
<a
className="bg-white p-4 text-gray-700 flex items-center gap-2 text-[1.35rem] rounded-full focus:scale-[1.15] hover:scale-[1.15] hover:text-gray-950 active:scale-105 transition cursor-pointer borderBlack dark:bg-white/10 dark:text-white/60"
href="https://github.com/thatgirlcancode"
Expand Down
6 changes: 2 additions & 4 deletions components/intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import Image from "next/image";
import React from "react";
import { motion } from "framer-motion";
import Link from "next/link";
import { BsArrow90DegDown, BsArrow90DegLeft, BsArrowBarDown, BsArrowRight, BsLinkedin } from "react-icons/bs";
import { HiDownload } from "react-icons/hi";
import { FaGithubSquare } from "react-icons/fa";
import { BsArrow90DegRight } from "react-icons/bs";
import { useSectionInView } from "@/lib/hooks";
import { useActiveSectionContext } from "@/context/active-section-context";
import profileImg from "@/public/profile.jpeg";
Expand Down Expand Up @@ -87,7 +85,7 @@ export default function Intro() {
}}
>
Contact me here{" "}
<BsArrowBarDown className="opacity-70 group-hover:translate-x-1 transition" />
<BsArrow90DegRight style={{ transform: 'rotate(90deg)' }} className="opacity-70 group-hover:translate-x-1 transition" />
</Link>
</motion.div>
</section>
Expand Down
8 changes: 4 additions & 4 deletions lib/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,26 +36,26 @@ export const links = [

export const experiencesData = [
{
title: "University of Florida",
title: "University of Florida 🐊",
location: "Gainesville, FL",
description:
"Graduated with an English Literature degree. I love linguistics, which is how I discovered programming, which is really just a different syntax for communicating... with computers.",
"Graduated with an English Literature degree. I love linguistics, which is how I discovered coding. Programming is really just a different syntax for communicating... except with computers. 🤖",
icon: React.createElement(LuGraduationCap),
date: "2003 - 2007",
},
{
title: "My First Job",
location: "Satellite Beach, FL",
description:
"Began my professional journey as an Application Developer on a secret government contract.",
"Began my professional journey as an Application Developer on a secret 🤫 government contract.",
icon: React.createElement(LuPartyPopper),
date: "2007 - 2012",
},
{
title: "Graduate Degree from FIT",
location: "Denver, CO",
description:
"I graduated with an engineering degree, while working full time for my first employer.",
"I earned a graduate degree in engineering, while working full time for my first employer.",
icon: React.createElement(LuGraduationCap),
date: "2009 - 2012",
},
Expand Down

0 comments on commit bcb8b62

Please sign in to comment.