diff --git a/.gitignore b/.gitignore index e4b1570..2cc8d8e 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ legacy-hosted/.next/ legacy-hosted/node_modules/ website/.next/ website/node_modules/ +.vercel diff --git a/website/app/globals.css b/website/app/globals.css index 6947671..9d8773b 100644 --- a/website/app/globals.css +++ b/website/app/globals.css @@ -124,6 +124,15 @@ pre { transform: translateY(0); } +/* Hide scrollbar in terminal demo */ +.hide-scrollbar { + -ms-overflow-style: none; + scrollbar-width: none; +} +.hide-scrollbar::-webkit-scrollbar { + display: none; +} + /* Copy button toast */ .copy-toast { animation: toast-fade 2s ease-out forwards; diff --git a/website/app/layout.tsx b/website/app/layout.tsx index 54ff51e..6ca4685 100644 --- a/website/app/layout.tsx +++ b/website/app/layout.tsx @@ -14,13 +14,13 @@ const jetbrainsMono = JetBrains_Mono({ }); export const metadata: Metadata = { - title: "VES AI — AI-ready product analytics CLI", + title: "VES AI — Session replay intelligence for agents", description: - "Connect PostHog. Render session recordings. Analyze with Gemini vision. Output structured markdown your agents can act on.", + "VES AI watches every PostHog recording, finds bugs and UX friction your team missed, and writes it up automatically. Local-first CLI for AI agent workflows.", openGraph: { - title: "VES AI — AI-ready product analytics CLI", + title: "VES AI — Session replay intelligence for agents", description: - "Connect PostHog. Render session recordings. Analyze with Gemini vision. Output structured markdown your agents can act on.", + "VES AI watches every PostHog recording, finds bugs and UX friction your team missed, and writes it up automatically. Local-first CLI for AI agent workflows.", type: "website", }, icons: { diff --git a/website/app/page.tsx b/website/app/page.tsx index 93dd39b..9cea569 100644 --- a/website/app/page.tsx +++ b/website/app/page.tsx @@ -2,10 +2,10 @@ import { AgentCards } from "../components/agent-cards"; import { Footer } from "../components/footer"; import { GettingStarted } from "../components/getting-started"; import { Hero } from "../components/hero"; -import { Integrations } from "../components/integrations"; import { Nav } from "../components/nav"; import { Pipeline } from "../components/pipeline"; -import { TerminalShowcase } from "../components/terminal"; +import { Problem } from "../components/problem"; +import { Solution } from "../components/solution"; export default function Home() { return ( @@ -13,10 +13,10 @@ export default function Home() {