File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import Image from "next/image" ;
22import Link from "next/link" ;
3- import LandingPlaceholder from "@/../public/landing_placeholder.png" ;
43
54import { ApiMember , useCommittee } from "@/hooks/useCommittee" ;
65
@@ -43,7 +42,7 @@ export default function AboutPage() {
4342 < div className = "relative aspect-[4/3] w-full flex-shrink-0 overflow-hidden rounded-2xl bg-light_2 md:w-96 lg:w-[32rem]" >
4443 < div className = "flex h-full w-full items-center justify-center" >
4544 < Image
46- src = { LandingPlaceholder }
45+ src = "/landing_placeholder.png"
4746 alt = "/landing_placeholder.png"
4847 fill = { true }
4948 />
@@ -63,7 +62,7 @@ export default function AboutPage() {
6362 function committeeImage ( profilePic : string ) {
6463 return (
6564 < Image
66- src = { profilePic === null ? LandingPlaceholder : profilePic }
65+ src = { profilePic === null ? "/landing_placeholder.png" : profilePic }
6766 alt = "/landing_placeholder.png"
6867 width = { 132 }
6968 height = { 140 }
You can’t perform that action at this time.
0 commit comments