From 62fd27a3c5ae63e5d765bd7d0452bd11c30e5631 Mon Sep 17 00:00:00 2001 From: Wibaek Park Date: Wed, 15 Apr 2026 23:32:41 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=ED=99=88=20=ED=99=94=EB=A9=B4=20?= =?UTF-8?q?=ED=95=98=EB=8B=A8=20=EC=82=AC=EC=97=85=EC=9E=90=EB=93=B1?= =?UTF-8?q?=EB=A1=9D=EB=B2=88=ED=98=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/app/(home)/_ui/SiteFooter/index.tsx | 25 +++++++++++++++++++ apps/web/src/app/(home)/page.tsx | 3 +++ 2 files changed, 28 insertions(+) create mode 100644 apps/web/src/app/(home)/_ui/SiteFooter/index.tsx diff --git a/apps/web/src/app/(home)/_ui/SiteFooter/index.tsx b/apps/web/src/app/(home)/_ui/SiteFooter/index.tsx new file mode 100644 index 00000000..466c4cf9 --- /dev/null +++ b/apps/web/src/app/(home)/_ui/SiteFooter/index.tsx @@ -0,0 +1,25 @@ +const BUSINESS_INFO = [ + { label: "상호", value: "바삭크리스피" }, + { label: "대표", value: "박위백" }, + { label: "사업자등록번호", value: "671-38-01352" }, + { label: "주소", value: "인천광역시 미추홀구 인하로 100, 인하드림센터동 2층 213A호" }, +] as const; + +const SiteFooter = () => { + return ( + + ); +}; + +export default SiteFooter; diff --git a/apps/web/src/app/(home)/page.tsx b/apps/web/src/app/(home)/page.tsx index 3e5b58d0..35e818fc 100644 --- a/apps/web/src/app/(home)/page.tsx +++ b/apps/web/src/app/(home)/page.tsx @@ -8,6 +8,7 @@ import { RegionEnumExtend } from "@/types/university"; import FindLastYearScoreBar from "./_ui/FindLastYearScoreBar"; import NewsSectionSkeleton from "./_ui/NewsSection/skeleton"; import PopularUniversitySection from "./_ui/PopularUniversitySection"; +import SiteFooter from "./_ui/SiteFooter"; import UniversityList from "./_ui/UniversityList"; const NewsSectionDynamic = dynamic(() => import("./_ui/NewsSection"), { @@ -149,6 +150,8 @@ const HomePage = async () => { + + ); From adf63ea2054202d143bfdf94f12b70f2754e2826 Mon Sep 17 00:00:00 2001 From: Wibaek Park Date: Wed, 15 Apr 2026 23:49:06 +0900 Subject: [PATCH 2/2] =?UTF-8?q?refactor:=20=EC=82=AC=EC=9D=B4=ED=8A=B8=20?= =?UTF-8?q?=ED=91=B8=ED=84=B0=20=EC=82=AC=EC=97=85=EC=9E=90=20=EC=A0=95?= =?UTF-8?q?=EB=B3=B4=20=EC=9D=B8=EB=9D=BC=EC=9D=B8=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EC=A0=95=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/app/(home)/_ui/SiteFooter/index.tsx | 29 ++++++++++--------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/apps/web/src/app/(home)/_ui/SiteFooter/index.tsx b/apps/web/src/app/(home)/_ui/SiteFooter/index.tsx index 466c4cf9..eb1d970f 100644 --- a/apps/web/src/app/(home)/_ui/SiteFooter/index.tsx +++ b/apps/web/src/app/(home)/_ui/SiteFooter/index.tsx @@ -1,21 +1,24 @@ -const BUSINESS_INFO = [ - { label: "상호", value: "바삭크리스피" }, - { label: "대표", value: "박위백" }, - { label: "사업자등록번호", value: "671-38-01352" }, - { label: "주소", value: "인천광역시 미추홀구 인하로 100, 인하드림센터동 2층 213A호" }, -] as const; - const SiteFooter = () => { return (