diff --git a/app/HomePage.tsx b/app/HomePage.tsx index 2e940427..97476a33 100644 --- a/app/HomePage.tsx +++ b/app/HomePage.tsx @@ -5,6 +5,7 @@ import { useWebSocketGuard } from './(shared)/hooks/useWebSocketGuard'; import Banner from './home/banner'; import { ArticleSection } from './home/components/article-section'; +import TradingInformationSection from './home/components/TradingInformationSection'; import BlogIntroBanner from './(shared)/components/blog-intro-banner'; export default function HomePage() { @@ -12,6 +13,7 @@ export default function HomePage() { return ( <> + diff --git a/app/home/components/TradingInformationSection.tsx b/app/home/components/TradingInformationSection.tsx new file mode 100644 index 00000000..9da1caad --- /dev/null +++ b/app/home/components/TradingInformationSection.tsx @@ -0,0 +1,47 @@ +'use client'; + +import Link from 'next/link'; + +export default function TradingInformationSection() { + return ( +
+
+ {/* 왼쪽 텍스트 설명 */} +
+

+ 천천히, 안전하게 데이터 거래 +

+

+ 24~48시간 이내 + 에 여유롭게 거래가 완료됩니다. +
+ 판매자가 직접 신청을 확인한 뒤, 데이터 발송까지 모든 과정을 꼼꼼히 + 관리합니다. +

+

+ 거래 대금은{' '} + 중간에서 안전하게 보호됩니다. +
+ 데이터가 제대로 전달될 때까지 안심하고 이용하세요. +

+ + 일반거래 시작하기 + +
+ {/* 오른쪽 이미지 영역 */} +
+ {/* 원하는 이미지를 아래에 넣으면 됨 */} + 여유롭게 거래하는 감자 캐릭터 +
+
+
+ ); +} diff --git a/public/potato-lay.png b/public/potato-lay.png new file mode 100644 index 00000000..49d8397d Binary files /dev/null and b/public/potato-lay.png differ