"use client"; import { r2Url } from "@/lib/data"; export default function Usecases() { const usecases = [ { title: "For Interactive Storytelling", description: "Transform ordinary toys into storytelling companions that respond to your child's imagination.", features: [ "Voice-activated responses", "Customizable personalities", "Age-appropriate content", "Multiple story modes" ], videoSrc: `${r2Url}/peterrabbit.mp4`, poster: `${process.env.NEXT_PUBLIC_SUPABASE_URL}/storage/v1/object/public/images/peterrabbit.png` }, { title: "For Educational Learning", description: "Turn everyday objects into educational tools that make learning fun and interactive.", features: [], videoSrc: `${r2Url}/paddington.mp4`, poster: `${process.env.NEXT_PUBLIC_SUPABASE_URL}/storage/v1/object/public/images/paddington.png` }, { title: "For Creative Play", description: "Enhance playtime with responsive objects that encourage creativity and imaginative play.", features: [ "Character role-playing", "Collaborative play options", "Parent monitoring features" ], videoSrc: `${r2Url}/plant.mp4`, poster: `${process.env.NEXT_PUBLIC_SUPABASE_URL}/storage/v1/object/public/images/plant.png` } ]; return (
{usecases.map((usecase, index) => (
{/* Video Column */}
{/* Text Column */}

{usecase.title}

{usecase.description}

{/*

Key Features:

*/}
    {usecase.features.map((feature, idx) => (
  • {feature}
  • ))}
))}
); }