Skip to content

Commit 830cbfc

Browse files
authored
Merge pull request #154 from School-of-Company/fix/mainUi
feat: 메인페이지 수정
2 parents cf62c75 + 33aeb76 commit 830cbfc

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/shared/const/headerValues.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ export const isHiddenPath = (pathname: string): boolean => {
88
};
99

1010
export const links = [
11-
{ section: "SloganSecondSection", label: "2025 광탈페 슬로건" },
12-
// { section: "section3", label: "FaQ" },
13-
{ section: "PreliminaryFourthSection", label: "2025 광탈페 예선 다시보기" },
14-
{ section: "FinalsSixthSection", label: "2025 광탈페 본선 다시보기" },
15-
{ section: "ReservationFifthSection", label: "본선 수상팀 명단" },
16-
];
11+
{ section: "SloganSecondSection", label: "2025 광탈페 슬로건" },
12+
// { section: "section3", label: "FaQ" },
13+
{ section: "PreliminaryFourthSection", label: "2025 광탈페 예선 다시보기" },
14+
{ section: "FinalsSixthSection", label: "2025 광탈페 본선 다시보기" },
15+
// { section: "ReservationFifthSection", label: "본선 수상팀 명단" },
16+
];

src/views/home/ui/HomePage/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ const PreliminaryFourthSection = dynamic(() => import("@/widgets/main/Preliminar
1010
ssr: false,
1111
});
1212

13-
const ReservationFifthSection = dynamic(() => import("@/widgets/main/ReservationFifthSection"), {
14-
loading: () => <SectionPlaceholder />,
15-
ssr: false,
16-
});
13+
// const ReservationFifthSection = dynamic(() => import("@/widgets/main/ReservationFifthSection"), {
14+
// loading: () => <SectionPlaceholder />,
15+
// ssr: false,
16+
// });
1717

1818
const FinalsSixthSection = dynamic(() => import("@/widgets/main/FinalsSixthSection"), {
1919
loading: () => <SectionPlaceholder />,
@@ -57,9 +57,9 @@ const HomePage = () => {
5757
<FinalsSixthSection />
5858
</LazySection>
5959

60-
<LazySection fallback={<SectionPlaceholder height="500px" />} rootMargin="300px">
60+
{/* <LazySection fallback={<SectionPlaceholder height="500px" />} rootMargin="300px">
6161
<ReservationFifthSection />
62-
</LazySection>
62+
</LazySection> */}
6363

6464
<LazySection fallback={<SectionPlaceholder height="500px" />} rootMargin="300px">
6565
<SeventhSection />

src/widgets/main/FinalsSixthSection/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const FinalsSixthSection = () => {
1818
<section id="FinalsSixthSection" className={cn("flex flex-col items-center my-20")}>
1919
<div className={cn("w-[70%] mobile:w-full")}>
2020
<SectionTitle
21-
title="2025 광탈페 본선"
21+
title="2025 광탈페 본선 다시보기"
2222
className={cn("mt-[66px] mobile:mt-[1.7rem] mb-28")}
2323
/>
2424

0 commit comments

Comments
 (0)