Skip to content

Commit 7236e52

Browse files
committed
refactor: 홈 페이지에서의 컴포넌트 간격 수정 및 통일
1 parent 93bcfea commit 7236e52

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/(with-sidebar)/(home)/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ import ButtonSection from '@/components/home/ButtonSection';
66

77
const Page = () => {
88
return (
9-
<div className="bg-background flex min-h-screen flex-col gap-6 font-sans md:p-[137px]">
9+
<div className="bg-background flex min-h-screen flex-col gap-4 font-sans md:p-[137px]">
1010
{/* 1. Header */}
1111
<HeaderSection />
1212

1313
{/* 2-1. ProfileSection */}
14-
<ProfileSection className="grid grid-cols-1 gap-6 md:grid-cols-3" />
14+
<ProfileSection className="grid grid-cols-1 gap-4 md:grid-cols-3" />
1515

1616
{/* 2-2. GraphSection */}
1717
<GraphSection></GraphSection>
1818

1919
{/* 2-3. BottomSection */}
20-
<BottomSection className="grid grid-cols-1 gap-6 md:grid-cols-2" />
20+
<BottomSection className="grid grid-cols-1 gap-4 md:grid-cols-2" />
2121

2222
{/* 3. ButtonSection */}
2323
<ButtonSection />

0 commit comments

Comments
 (0)