o2o-negosium-original/landing/app/routes/home.tsx

46 lines
1.8 KiB
TypeScript

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 { HeroNeumorphic } from "@/components/sections/hero-neumorphic";
import { HowItWorksDemo } from "@/components/sections/how-it-works-demo";
import { NegotiationConsole } from "@/components/sections/negotiation-console";
import { Reinforcement } from "@/components/sections/reinforcement";
const TITLE = "negotium — AI 구매 협상 자동화";
const DESCRIPTION =
"가이드라인만 정하면 AI 흥정 봇이 여러 협력사와 단가를 대신 조율합니다. 흥정부터 낙찰까지 자동으로, 협상할수록 강화학습으로 더 좋은 조건을 만드는 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 (
<div className="min-h-screen bg-white text-ink font-sans antialiased selection:bg-primary/10 selection:text-primary">
<Header />
<HeroNeumorphic />
<NegotiationConsole />
<HowItWorksDemo />
<Reinforcement />
<CoreValues />
<Comparison />
<Faq />
<FinalCTA />
<Contact />
<Footer />
</div>
);
}