import { Comparison } from "@/components/sections/comparison"; import { Contact } from "@/components/sections/contact"; import { CoreValues } from "@/components/sections/core-values"; import { Faq } from "@/components/sections/faq"; import { FinalCTA } from "@/components/sections/final-cta"; import { Footer } from "@/components/sections/footer"; import { Header } from "@/components/sections/header"; import { HeroDataFlow } from "@/components/sections/hero-dataflow"; import { HowItWorksDemo } from "@/components/sections/how-it-works-demo"; import { NegotiationDemo } from "@/components/sections/negotiation-demo"; import { Reinforcement } from "@/components/sections/reinforcement"; /* 한글·영문을 둘 다 담는다. 본문은 "네고시움"으로 갔지만 타이틀에서 영문을 빼면 "negotium" 으로 검색해 들어오던 유입이 끊긴다 — 검색 질의는 사용자가 정하지 우리가 못 정한다. */ const TITLE = "네고시움(negotium) — AI 구매 협상 자동화"; const DESCRIPTION = "품목·목표가·마감일만 정하면 협상 에이전트가 협력사마다 1:1로 단가를 조율하고 낙찰까지 판정합니다. 협상 기록이 쌓일수록 조건이 좋아지는 B2B 구매 협상 자동화 솔루션."; export function meta() { return [ { title: TITLE }, { name: "description", content: DESCRIPTION }, { property: "og:type", content: "website" }, { property: "og:site_name", content: "negotium" }, { property: "og:title", content: TITLE }, { property: "og:description", content: DESCRIPTION }, { property: "og:locale", content: "ko_KR" }, ]; } export default function Home() { return (
); }