"use client" import { useState } from "react"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import Image from "next/image"; import Link from "next/link"; import { ShoppingCart } from "lucide-react"; type Product = { id: string; name: string; description: string; price: number; imageUrl: string; features: string[]; url: string; }; const products: Product[] = [ { id: "1", name: "Elato AI Device", description: "Transform any toy into an AI companion with any voice and personality with our advanced conversational AI", price: 55, url: "https://elatoai.com/products", imageUrl: "/products/device1.jpeg", features: [ "Works with any toy or plushie", "Create unlimited AI characters", "First month subscription FREE", "Easy to set up in minutes", ] }, { id: "2", name: "Elato AI Dev Kit", description: "Create custom AI experiences with our developer-friendly kit, complete with sensors and tutorials", price: 65, url: "https://elatoai.com/products/ai-devkit", imageUrl: "/products/devkit1.png", features: [ "Flash our open source code to your device", "Flexible speaker and Lipo battery options", "Set your own voice and personality", "Attach a custom case" ] } ]; export default function ProductsSection() { return (

Our Products

Everything you need to bring conversational AI to your world

{products.map((product) => (
{/* Image Section */}
{product.name}
{/* Content Section */}

{product.name}

{product.description}

{/*
{product.features.map((feature) => (

{feature}

))}
*/}
{/* Price and Button Section */}

${product.price}

))}
); }