Skip to content

Commit cc7faa2

Browse files
committed
chore: 컨벤션 체크2
1 parent 411b716 commit cc7faa2

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/app/(with-header)/components/BannerSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export default function BannerSection() {
66
<section className="relative w-full h-240 md:h-550 mb-93">
77
{/* 배경 이미지 */}
88
<Image
9-
src="/test/image1.png"
10-
alt="스트릿 댄스"
9+
src='/test/image1.png'
10+
alt='스트릿 댄스'
1111
fill
1212
className="object-cover"
1313
priority

src/app/(with-header)/layout.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// src/app/(with-header)/layout.tsx
2-
import '@/app/globals.css';
31
import Header from '@/components/Header';
42
import Footer from '@/components/Footer';
53

@@ -10,9 +8,8 @@ export default function WithHeaderLayout({
108
}) {
119
return (
1210
<>
13-
{/* 헤더와 푸터 */}
1411
<Header />
15-
<main className="pt-70">{children}</main>
12+
<main className='pt-70'>{children}</main>
1613
<Footer />
1714
</>
1815
);

0 commit comments

Comments
 (0)