'use client'; import Image from 'next/image'; interface OnboardingTutorialProps { onComplete: () => void; onClose: () => void; } export default function OnboardingTutorial({ onComplete, onClose }: OnboardingTutorialProps) { const steps = [ { title: 'Define Your Identity', description: 'Start by defining your identity - this is the foundation of your Second Me.', image: '/images/step_1.png' }, { title: 'Upload Your Memories', description: 'Share your experiences by uploading notes, documents, or other content.', image: '/images/step_2.png' }, { title: 'Train Your Second Me', description: 'Train your AI model, learning your identity, experience and preferences.', image: '/images/step_3.png' }, { title: 'Join AI Network', description: 'Explore interactions between your Second Me and other AI entities in the network.', image: '/images/step_4.png' } ]; return (
{/* Background gradient decorations */}

How to Create Your Second Me

Follow these simple steps to build your digital identity foundation.

{steps.map((step, index) => (
{step.title}
{index + 1}

{step.title}

{step.description}

))}
); }