// Marketing site — content sections (marquee, stats, tools, about, pricing, CTA, footer). const { useState } = React; const { Button, Badge } = window.TheGangsaDesignSystem_223a82; function Band() { return (
); } function Stats() { return (
By the numbers
₩9,900~ 월 시작 가격 · 스탠다드
); } const TOOLS = [ { n: "01", icon: "search", title: "조회수 검색", desc: "키워드 여러개를 한 번에 조회하고 PC·모바일 검색량으로 장사 유불리를 판단합니다." }, { n: "02", icon: "map-pin", title: "플레이스 검색", desc: "내 매장과 경쟁 매장의 플레이스 노출 순위를 한눈에 확인합니다." }, { n: "03", icon: "crosshair", title: "대표키워드 판별", desc: "TOP10 노출 기준 발현율로 우리 매장의 대표키워드를 가립니다." }, { n: "04", icon: "trending-up", title: "유입 분석", desc: "어떤 키워드가 실제 매장 유입을 만드는지 추적합니다." }, { n: "05", icon: "key-round", title: "대표키워드", desc: "대표키워드 후보를 검증하고 관리합니다." }, { n: "06", icon: "message-square", title: "GEO 리뷰", desc: "지역 기반 리뷰 초안을 만들고 등록 작업으로 바로 이어갑니다." }, { n: "07", icon: "file-text", title: "블로그 분석", desc: "상위글 제목·본문 키워드를 분석하고 콘텐츠 가이드로 연결합니다." }, { n: "08", icon: "users", title: "인기블로거", desc: "실제 노출 키워드 근거가 있는 섭외 후보를 빠르게 좁힙니다." }, { n: "09", icon: "award", title: "블로그 등급", desc: "블로그 지수·등급을 진단합니다." }, { n: "10", icon: "palette", title: "브랜딩 정리", desc: "브랜드 자료를 정리하고 비밀창고에 안전하게 보관합니다." }, { n: "11", icon: "tag", title: "저가 유입 전략", desc: "70원 거미줄 등 저비용 유입 전략을 설계합니다." }, { n: "12", icon: "stethoscope", title: "플레이스 진단", desc: "플레이스 노출 상태를 종합 진단합니다." }, ]; function ToolCard({ t, i }) { const [h, setH] = useState(false); return (
setH(true)} onMouseLeave={() => setH(false)} style={{ position: "relative", padding: "26px 24px 64px", height: "100%", boxSizing: "border-box", background: "var(--bg-surface)", border: `1px solid ${h ? "var(--green-line)" : "var(--line)"}`, borderRadius: "var(--r-lg)", boxShadow: h ? "var(--shadow-card)" : "var(--shadow-soft)", transform: h ? "translateY(-4px)" : "none", transition: `transform .3s ${EASE}, box-shadow .3s ${EASE}, border-color .2s ease`, }}>
{t.n}

{t.title}

{t.desc}

자세히
); } function Tools() { return (
Capability

매장이 필요한 모든 도구,
한 화면에서.

탐색은 원형 허브에서, 반복 작업은 바로가기 카드에서. 흩어진 마케팅 작업을 하나의 흐름으로 묶었습니다.

{TOOLS.map((t, i) => )}
); } function About() { return (
Who we are

우리는 사장님이 지금 해야 할 한 수를 매번 안내합니다. 복잡한 마케팅 이론 대신, 데이터로 판단하고 바로 실행하는 가장 쉬운 길을 만듭니다.

키워드 검색량부터 플레이스 순위, 리뷰, 블로그까지 — 흩어진 도구를 한 화면에 모아 매장의 매출이 오르는 흐름을 설계합니다.

); } function PricingTeaser({ onPricing }) { const tiers = [ { name: "스탠다드", price: "₩9,900", meta: "1매장 자영업자" }, { name: "비지니스", price: "₩24,900", meta: "5매장 다매장", hot: true }, { name: "프로", price: "₩49,900", meta: "대행사 무제한" }, ]; return (
Pricing

매장 규모에 맞춰 시작하세요

{tiers.map((t, i) => (
{t.hot && 인기}
{t.name}
{t.meta}
{t.price}
/ 월
))}
); } function CTA({ onCta }) { return (
Let's grow

GROW YOUR
STORE.

지금 무료로 시작하고, 오늘 바로 실행할 첫 작업을 받아보세요.

); } function Footer() { return ( ); } Object.assign(window, { Band, Stats, Tools, About, PricingTeaser, CTA, Footer });