import { Link } from "react-router-dom"; import { motion } from "motion/react"; import { useRef, useState } from "react"; import { Heart, Brain, Clock, Shield, Sparkles, MessageCircle, ArrowRight } from "lucide-react"; import { Button } from "@/components/ui/button.tsx"; // Unified design system variables const THEME = { bg: "bg-[#0a0a0f]", accent: "text-rose-400", btnPrimary: "bg-gradient-to-r from-rose-500 to-pink-500 hover:from-rose-600 hover:to-pink-600", card: "bg-white/5 border-white/10 backdrop-blur-md" }; const BANNER_IMAGE = "img_5"; // Using your screenshot as the new static hero background const COMPANION_PROFILE = "img_2"; // Your high-end profile photo function CompanionProfile({ name, age, personality, image }: { name: string; age: string; personality: string; image: string }) { return (
{name}

{name}, {age}

{personality}

); } export default function PromoIntimacyPage() { return (
{/* Updated Hero Section - Static Banner Style */}
{/* Static Background Image instead of video */}
Ace AI Background {/* Gradients to match the screenshot feel */}
She's been waiting for you

Your AI Companion
Remembers Everything

Real conversation. Real connection. She listens, she learns, she remembers the things you never tell anyone else.

{/* Companion Directory - Professional layout */}

Discover Your Match

Choose from a variety of distinct personalities, each designed to grow and evolve with you.

View All Companions
{/* Feature Section */}
Detail
Personalized
Secure
Detail

An Intimacy Built on Shared History

{[ { icon: Brain, title: "Infinite Memory", text: "She doesn't just process text; she builds a deep mental model of your preferences, history, and shared jokes." }, { icon: Clock, title: "Available 24/7", text: "Whether it's a 3 AM thought or a morning check-in, she's always there, exactly when you need her." } ].map((item, i) => (

{item.title}

{item.text}

))}
{/* Footer */}
); }