create-automaticgpt-template
Version:
AutomaticGPT - A production-ready Expo template with AI chat, authentication, conversation management, analytics, and sharing features
28 lines (26 loc) • 634 B
text/typescript
export interface OnboardingSlide {
id: string;
title: string;
description: string;
icon: string;
}
export const defaultSlides: OnboardingSlide[] = [
{
id: '1',
title: 'Welcome to Automatic ExpoGPT',
description: 'Your intelligent assistant powered by advanced AI technology',
icon: '🚀',
},
{
id: '2',
title: 'Natural Conversations',
description: 'Chat naturally and get intelligent responses tailored to your needs',
icon: '💬',
},
{
id: '3',
title: 'Ready to Begin',
description: 'Sign in to start your journey with AI-powered assistance',
icon: '✨',
},
];