diff --git a/pages/index.tsx b/pages/index.tsx index 38d6a0d..575c2fe 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,6 +1,6 @@ import fs from "fs"; import matter from "gray-matter"; -import React, { useRef, useState } from "react"; +import React, { useRef } from "react"; import Link from "next/link"; import Image from "next/image"; import { useInView } from "react-intersection-observer"; @@ -19,7 +19,6 @@ import ProjectBlurb from "../components/projectBlurb"; import TypedText from "../components/typedText"; import SkillIcon from "../components/skillIcon"; import SocialIcon from "../components/socialIcon"; -import PictureLoader from "../components/pictureLoader"; import CustomHead from "../components/customHead"; import { skills } from "../components/utils/skills"; import SubHeading from "../components/basic/subheading"; @@ -85,8 +84,6 @@ export default function Home(props: props) { const { projects, skills, systems, systemBlurb } = props; const [fullyScrolled, fullyScrolledProps] = useScroll(90, "horiz"); - const [imageLoaded, setImageLoaded] = useState(false); - const mainMenuRef = useRef(null); const scrollToTop = () => { if (mainMenuRef.current) @@ -358,17 +355,6 @@ export default function Home(props: props) {
-
- {!imageLoaded && } - setImageLoaded(true)} - className="absolute bottom-0 right-0 md:h-[40vh] sm:h-[50vh] h-[40vh] w-auto" - src={"/images/me.webp"} - alt={"A picture of Art"} - width={761} - height={1000} - > -
diff --git a/public/images/me.webp b/public/images/me.webp deleted file mode 100644 index 05ca52a..0000000 Binary files a/public/images/me.webp and /dev/null differ