'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 (
Follow these simple steps to build your digital identity foundation.
{step.description}