import * as React from "react"; import { Button } from "./button"; import { Card, CardContent } from "./card"; import { cn } from "../../lib/utils"; interface HeroSectionProps { className?: string; onGetStarted?: () => void; } const HeroSection = React.forwardRef( ({ className, onGetStarted, ...props }, ref) => { return (
{/* Background decoration */}
{/* Badge */}
πŸŽ‰ AI 기반 Excel νŽΈμ§‘ 도ꡬ μΆœμ‹œ!
{/* Main heading */}

All in One{" "} Excel AI

{/* Subtitle */}

μžμ—°μ–΄λ‘œ Excel을 νŽΈμ§‘ν•˜μ„Έμš”. AIκ°€ μˆ˜μ‹, 차트, 뢄석을 μžλ™μœΌλ‘œ μƒμ„±ν•©λ‹ˆλ‹€.
λͺ¨λ“  μ²˜λ¦¬λŠ” λΈŒλΌμš°μ €μ—μ„œ μ•ˆμ „ν•˜κ²Œ!

{/* CTA buttons */}
{/* Features preview */}
πŸ”’

μ™„μ „ν•œ ν”„λΌμ΄λ²„μ‹œ

파일이 μ„œλ²„λ‘œ μ „μ†‘λ˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.
λͺ¨λ“  μ²˜λ¦¬λŠ” λΈŒλΌμš°μ €μ—μ„œ μ•ˆμ „ν•˜κ²Œ!

πŸ€–

AI μžλ™ 처리

μžμ—°μ–΄λ‘œ λͺ…λ Ήν•˜λ©΄ AIκ°€
μˆ˜μ‹κ³Ό 차트λ₯Ό μžλ™ μƒμ„±ν•©λ‹ˆλ‹€.

⚑

3-μŠ€ν… κ°„νŽΈν•¨

μ—…λ‘œλ“œ β†’ ν”„λ‘¬ν”„νŠΈ β†’ λ‹€μš΄λ‘œλ“œ
λ³΅μž‘ν•œ μ„€μ • 없이 λ°”λ‘œ μ‚¬μš©!

); }, ); HeroSection.displayName = "HeroSection"; export { HeroSection };