diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..e14a6e3 Binary files /dev/null and b/.DS_Store differ diff --git a/refer_landing_page/app/members/page.tsx b/refer_landing_page/app/members/page.tsx index 3806855..38c25dd 100644 --- a/refer_landing_page/app/members/page.tsx +++ b/refer_landing_page/app/members/page.tsx @@ -1,6 +1,7 @@ "use client"; import React, { useEffect, useState } from "react"; +import Image from "next/image"; import { getMembers, getAlumni } from "../../lib/api"; import { ProfessorDetailsDialog } from "./_components/ProfessorDetailsDialog"; import type { Member, Alumnus } from "../../content/types"; @@ -80,13 +81,17 @@ export default function MembersPage() { -
-
- Affiliation & Office +
+
+ Prof. Seok-Joo Koh
-

Kyungpook National University

-

IT Building #5 Room 527

-

Daegu, Republic of Korea

diff --git a/refer_landing_page/assets/prof_profile.png b/refer_landing_page/assets/prof_profile.png new file mode 100644 index 0000000..1feb71b Binary files /dev/null and b/refer_landing_page/assets/prof_profile.png differ diff --git a/refer_landing_page/next.config.js b/refer_landing_page/next.config.js index 9722c43..6a60888 100644 --- a/refer_landing_page/next.config.js +++ b/refer_landing_page/next.config.js @@ -3,6 +3,9 @@ const nextConfig = { output: "export", trailingSlash: true, reactStrictMode: true, + images: { + unoptimized: true, + }, }; module.exports = nextConfig; diff --git a/refer_landing_page/public/images/prof_profile.png b/refer_landing_page/public/images/prof_profile.png new file mode 100644 index 0000000..1feb71b Binary files /dev/null and b/refer_landing_page/public/images/prof_profile.png differ diff --git a/refer_landing_page/public/prof_profile.png b/refer_landing_page/public/prof_profile.png new file mode 100644 index 0000000..1feb71b Binary files /dev/null and b/refer_landing_page/public/prof_profile.png differ