Skip to content

Commit df26733

Browse files
committed
style: 랜딩페이지 스타일 변경
1 parent b42e1bc commit df26733

3 files changed

Lines changed: 5 additions & 14 deletions

File tree

components/landing/FeatureList.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,12 @@ const FEATURES = [
3434
const FeatureList = () => {
3535
return (
3636
<div className="flex h-full flex-col items-center justify-center space-y-3 text-center">
37-
<p className="bg-surface-alt rounded-mg mt-16 rounded-lg p-1 px-4 text-xs">
38-
⚙️ 핵심 기능
39-
</p>
4037
<h1 className="text-4xl font-bold">개발자 성장을 위한</h1>
4138
<h1 className="text-primary text-4xl font-bold">완벽한 도구</h1>
4239
<div className="text-xl font-light">
4340
<h2>체계적인 학습과 지속적인 성장을 돕는 강력한 기능들</h2>
4441
</div>
45-
<div className="mt-15 grid grid-cols-1 gap-6 px-20 sm:grid-cols-2 lg:grid-cols-4">
42+
<div className="mt-15 grid max-w-7xl grid-cols-1 gap-6 px-20 sm:grid-cols-2 lg:grid-cols-4">
4643
{FEATURES.map((feature) => (
4744
<FeatureCard key={feature.title} {...feature} />
4845
))}

components/landing/HeroSection.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
const HeroSection = () => {
22
return (
33
<div className="flex flex-col items-center justify-center space-y-3 pt-30 text-center">
4-
<p className="bg-surface-alt rounded-mg mt-16 rounded-lg p-1 px-4 text-xs">
5-
🚀 개발자를 위한 성장 플랫폼
6-
</p>
74
<h1 className="text-8xl font-bold">매일 성장하는</h1>
85
<h1 className="text-primary text-8xl font-bold">개발자의 여정</h1>
96
<div className="text-2xl font-light">

components/landing/LandingPreview.tsx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,16 @@ import FeatureContent from '@/components/landing/FeatureContent';
44
const LandingPreview = () => {
55
return (
66
<div className="mt-30 flex h-full flex-col items-center justify-center space-y-3 pb-50 text-center">
7-
<p className="bg-surface-alt rounded-mg mt-16 rounded-lg p-1 px-4 text-xs">
8-
🤔 왜 DevFlow를 사용할까요?
9-
</p>
107
<h1 className="text-4xl font-bold">체계적인 학습으로</h1>
118
<h1 className="text-primary text-4xl font-bold">더 빠른 성장</h1>
12-
<div className="mt-10 flex gap-50">
9+
<div className="mx-20 mt-10 flex flex-col items-center gap-10 lg:flex-row lg:items-start lg:gap-50">
1310
<FeatureContent />
1411
<Image
1512
src="/PreviewImage.png"
1613
alt="DevFlow 미리보기"
17-
className="w-full object-cover"
18-
width={430}
19-
height={232}
14+
width={720}
15+
height={400}
16+
className="w-full max-w-[480px] min-w-[360px] flex-shrink-0 object-contain md:max-w-[560px] lg:max-w-[640px] xl:max-w-[720px]"
2017
/>
2118
</div>
2219
</div>

0 commit comments

Comments
 (0)