Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions apps/web/src/app/(home)/_ui/SiteFooter/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
const SiteFooter = () => {
return (
<footer className="mt-6 border-t-[5px] border-k-50 bg-background-2 px-5 py-6">
<p className="mb-2 font-serif text-k-600 typo-sb-11">사업자 정보</p>
<ul className="space-y-1">
<li className="flex gap-2 typo-regular-5">
<span className="w-20 shrink-0 text-k-400">상호</span>
<span className="flex-1 text-k-600">바삭크리스피</span>
</li>
<li className="flex gap-2 typo-regular-5">
<span className="w-20 shrink-0 text-k-400">대표</span>
<span className="flex-1 text-k-600">박위백</span>
</li>
<li className="flex gap-2 typo-regular-5">
<span className="w-20 shrink-0 text-k-400">사업자등록번호</span>
<span className="flex-1 text-k-600">671-38-01352</span>
</li>
<li className="flex gap-2 typo-regular-5">
<span className="w-20 shrink-0 text-k-400">주소</span>
<span className="flex-1 text-k-600">인천광역시 미추홀구 인하로 100, 인하드림센터동 2층 213A호</span>
</li>
</ul>
<p className="mt-4 text-k-400 typo-regular-6">© {new Date().getFullYear()} 솔리드커넥션. All rights reserved.</p>
</footer>
);
};

export default SiteFooter;
3 changes: 3 additions & 0 deletions apps/web/src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"), {
Expand Down Expand Up @@ -149,6 +150,8 @@ const HomePage = async () => {
</div>

<NewsSectionDynamic newsList={newsList} />

<SiteFooter />
</div>
</>
);
Expand Down
Loading