import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardFooter, CardHeader, CardTitle, } from "@/components/ui/card"; import { Bird, CheckCircle, Truck } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; interface Product { title: string; description: string; imageSrc: string; features: string[]; components: string[]; price: number; paymentLink: string; originalPrice: number; shadow: string; } const DeliveryString = "Delivery starting November 2024"; const SubscriptionString = "Preorder now to get access to Elato Voice Premium FREE for 2 months. $5/month after."; const products: Product[] = [ { title: "Elato Toy", description: "The Elato toy brings together AI and creative storytelling to create dynamic, personalized stories for children.", imageSrc: "/images/front_view.png", features: [ "Dimensions: 4.5cm x 3.8cm x 1.9cm", "Unlimited access to Elato characters till we deliver your device", "On-the-go empathic companion for anyone", "Access any AI character from the Elato universe", "Compact and easy to use", "Customizable to fit any object", "Over 4 days standby and 6 hours of continuous voice interaction", "Understand your conversational insights", ], components: ["The Elato toy", "USB Type-C cable"], originalPrice: 89, price: 57.99, // paymentLink: "https://buy.stripe.com/5kAg0q8dg9SUcCceUU", paymentLink: "/products", shadow: "0 4px 6px rgba(255, 215, 0, 0.2), 0 8px 24px rgba(218, 165, 32, 0.5) !important;", }, { title: "Elato AI DIY Dev Kit", description: "The Elato AI Dev Kit is a fully programmable set of components for developers to create their own AI characters and integrate them into their projects.", imageSrc: "/images/devkit.png", features: [ "All hardware components included in your Elato kit. No soldering required.", "Unlimited access to Elato characters on our website till we deliver your device", "Tools to create your own AI character", "Integrate your AI character into your projects", "Access to the Elato AI SDK", "Access to the Elato AI Discord community", ], components: [ "Mini ESP32-S3 device", "Microphone module", "Speaker module", "Battery module", "LED light module", "Switch", "USB-C cable", ], originalPrice: 69, price: 45.99, // paymentLink: "https://buy.stripe.com/eVaeWmdxAc12fOo145", paymentLink: "/products", shadow: "0 4px 6px rgba(135, 206, 235, 0.2), 0 8px 24px rgba(70, 130, 180, 0.5) !important;", }, ]; const ProductsAndSub = () => { const SubscriptionNode = (

*{SubscriptionString}

); return (

Products

Choose the product that best fits your needs.

{products.map((product, index) => (
{product.title}
${product.price}
${product.originalPrice}
{" "} {"FREE Shipping over $100"} {"Early Bird"}
{product.title}

{product.description}

{SubscriptionNode}

Features

  • Components in package :{" "} {product.components.map( (components, index) => ( {index + 1}.{" "} {components} ) )}
  • {product.features.map( (feature, index) => (
  • {feature}
  • ) )}
{DeliveryString}
))}
); }; export default ProductsAndSub;