diff --git a/public/images/job-fair.png b/public/images/job-fair.png new file mode 100644 index 0000000..a729613 Binary files /dev/null and b/public/images/job-fair.png differ diff --git a/src/components/common/Banner/Banner.tsx b/src/components/common/Banner/Banner.tsx index 530af30..2af3946 100644 --- a/src/components/common/Banner/Banner.tsx +++ b/src/components/common/Banner/Banner.tsx @@ -2,10 +2,17 @@ import Image from "next/image"; import classes from "./Banner.module.css"; import { Group, Stack } from "@mantine/core"; -export type ImageType = "AI_HUB" | "IND_UNIV_PROJECT" | "INTERVIEW" | "PROJECT" | "S_TOP"; +export type ImageType = + | "AI_HUB" + | "IND_UNIV_PROJECT" + | "INTERVIEW" + | "PROJECT" + | "S_TOP" + | "JOB_FAIR"; export type ImageLocationLookupTable = Record; export const IMAGE_LOCATION_LOOKUP_TABLE: ImageLocationLookupTable = { AI_HUB: "/images/aihub.png", + JOB_FAIR: "/images/job-fair.png", IND_UNIV_PROJECT: "/images/ind-univ-project.png", INTERVIEW: "/images/interview.png", PROJECT: "/images/project.png",