diff --git a/src/app/(main)/home/page.tsx b/src/app/(main)/home/page.tsx index 66daad3..59b4888 100644 --- a/src/app/(main)/home/page.tsx +++ b/src/app/(main)/home/page.tsx @@ -1,7 +1,7 @@ 'use client' import { useState, useEffect, useRef } from 'react' -import { Search } from 'lucide-react' +import { Search, BarChart2, Bell, TrendingUp } from 'lucide-react' import { Header } from '@/components/layout/Header' import { CourseCard } from '@/components/course/CourseCard' import { Skeleton } from '@/components/ui/Skeleton' @@ -12,6 +12,12 @@ import type { CourseCategory } from '@/lib/types' const API_URL = process.env.NEXT_PUBLIC_API_URL ?? '' +const FEATURES = [ + { Icon: BarChart2, label: '시세 차트' }, + { Icon: Bell, label: '목표가 알림' }, + { Icon: TrendingUp, label: '실시간 랭킹' }, +] as const + function LoginBanner() { const [visible, setVisible] = useState(false) @@ -23,16 +29,24 @@ function LoginBanner() { if (!visible) return null return ( -
여러 골프거래소 시세를 한눈에
-목표가 도달 시 즉시 알림
+여러 골프거래소 시세를 한눈에
+목표가 도달 시 즉시 알림
+ +