Skip to content

Commit

Permalink
remove aboutsection
Browse files Browse the repository at this point in the history
  • Loading branch information
thatcatcancode committed Dec 6, 2023
1 parent 6df2db1 commit ff3cf7c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 12 deletions.
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const inter = Inter({ subsets: ["latin"] });

export const metadata = {
title: "Leila 'Lee' Adams | Portfolio",
description: "Leila (lee-la) is a full-stack developer with 15+ years of experience.",
description: "Leila (lee-la) is a full-stack developer with 10+ years of experience.",
};

export default function RootLayout({
Expand Down
1 change: 0 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export default function Home() {
<main className="flex flex-col items-center px-4">
<Intro />
<SectionDivider />
<About />
<Projects />
<Skills />
<Experience />
Expand Down
22 changes: 18 additions & 4 deletions components/intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { BsArrow90DegRight } from "react-icons/bs";
import { useSectionInView } from "@/lib/hooks";
import { useActiveSectionContext } from "@/context/active-section-context";
import profileImg from "@/public/profile.jpeg";
import { FaReact } from "react-icons/fa";

export default function Intro() {
const { ref } = useSectionInView("Home", 0.5);
Expand Down Expand Up @@ -63,11 +64,24 @@ export default function Intro() {
>
<span className="font-bold">✨Hi✨, I'm Lee, </span> a{" "}
<span className="font-bold">full-stack developer</span> with{" "}
<span className="font-bold">15+ years</span> of experience. I enjoy
<span className="font-bold">10+ years</span> of experience. I enjoy
building <span className="italic">sites & apps</span>. My focus is on {" "}
<span className="underline">frontend development</span>.
</motion.h1>

<motion.div className="mb-3"
initial={{ opacity: 0, y: 100 }}
animate={{ opacity: 1, y: 0 }}
transition={{
delay: 0.1,
}}>
<div className="mb-4 text-sm">
This app was built with <span className="italic">React & Next.js</span>
</div>
<div>Checkout <span className="font-bold">more projects</span> below
</div>
</motion.div>

<motion.div
className="flex flex-col sm:flex-row items-center justify-center gap-2 px-4 text-lg font-medium"
initial={{ opacity: 0, y: 100 }}
Expand All @@ -77,14 +91,14 @@ export default function Intro() {
}}
>
<Link
href="#contact"
href="#projects"
className="group bg-gray-900 text-white px-7 py-3 flex items-center gap-2 rounded-full outline-none focus:scale-110 hover:scale-110 hover:bg-gray-950 active:scale-105 transition"
onClick={() => {
setActiveSection("Contact");
setActiveSection("Projects");
setTimeOfLastClick(Date.now());
}}
>
Contact me here{" "}
More projects{" "}
<BsArrow90DegRight style={{ transform: 'rotate(90deg)' }} className="opacity-70 group-hover:translate-x-1 transition" />
</Link>
</motion.div>
Expand Down
8 changes: 2 additions & 6 deletions lib/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ export const links = [
name: "Home",
hash: "#home",
},
{
name: "About",
hash: "#about",
},
{
name: "Projects",
hash: "#projects",
Expand Down Expand Up @@ -60,7 +56,7 @@ export const experiencesData = [
title: "Graduate Degree from FIT",
location: "Denver, CO",
description:
"I earned a graduate degree in engineering, while working full time for my first employer.",
"I earned a graduate degree in engineering, while working full time.",
icon: React.createElement(LuGraduationCap),
date: "2009 - 2012",
},
Expand All @@ -84,7 +80,7 @@ export const experiencesData = [
title: "My Consulting Business",
location: "Melbourne, FL",
description:
"I ran my own consulting business for a few years. My clients ranged from government to hardware startups. I upskilled in React!",
"I ran my own consulting business for a few years. My clients ranged from the Department of Energy to hardware startups.",
icon: React.createElement(FaReact),
date: "2018-2019",
},
Expand Down

0 comments on commit ff3cf7c

Please sign in to comment.