diff --git a/src/app/(website)/components/Home/Collaboration/index.tsx b/src/app/(website)/components/Home/Collaboration/index.tsx index 262a2c2..e2739e3 100644 --- a/src/app/(website)/components/Home/Collaboration/index.tsx +++ b/src/app/(website)/components/Home/Collaboration/index.tsx @@ -2,7 +2,7 @@ import { motion, MotionValue, useScroll, useTransform } from "motion/react"; import Link from "next/link"; -import { useEffect, useRef } from "react"; +import { useRef } from "react"; const collaborators = { aotearoa: Array.from({ length: 16 }).map((x, i) => `Organisation ${i}`), diff --git a/src/app/(website)/components/Home/Projects/index.tsx b/src/app/(website)/components/Home/Projects/index.tsx index 281d10b..addddc7 100644 --- a/src/app/(website)/components/Home/Projects/index.tsx +++ b/src/app/(website)/components/Home/Projects/index.tsx @@ -4,7 +4,6 @@ import useWindow from "@/app/(website)/hooks/useWindow"; import { HomeProject, Project } from "@payload-types"; import { RichText } from "@payloadcms/richtext-lexical/react"; import { motion, useScroll, useTransform } from "motion/react"; -import Image from "next/image"; import Link from "next/link"; import { useRef, useState } from "react"; import PayloadImage from "../../PayloadImage";