File size: 3,354 Bytes
065c470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
new Vue({
    el: '#app',
    data: {
        selectedApp: null,
        aiApps: [
            {
                id: 1,
                name: 'MindScribe',
                shortDescription: 'AI-powered journal and mood tracker',
                longDescription: 'MindScribe is your personal AI therapist and journal. It analyzes your daily entries to provide insights into your emotional well-being and offers personalized suggestions for improving your mental health.',
                icon: 'fas fa-brain',
                color: '#FF6B6B',
                link: '#'
            },
            {
                id: 2,
                name: 'EcoSense',
                shortDescription: 'Smart home energy optimization',
                longDescription: 'EcoSense uses advanced AI algorithms to optimize your homes energy usage. It learns your habits and adjusts your smart home devices to maximize efficiency without sacrificing comfort.',
                icon: 'fas fa-leaf',
                color: '#4ECDC4',
                link: '#'
            },
            {
                id: 3,
                name: 'LinguaGenius',
                shortDescription: 'AI language learning assistant',
                longDescription: 'LinguaGenius revolutionizes language learning by adapting to your personal learning style. It creates custom lesson plans, provides real-time pronunciation feedback, and engages you in AI-powered conversations.',
                icon: 'fas fa-language',
                color: '#45B7D1',
                link: '#'
            },
            {
                id: 4,
                name: 'NutriAI',
                shortDescription: 'Personalized nutrition and meal planning',
                longDescription: 'NutriAI is your personal nutritionist powered by artificial intelligence. It analyzes your dietary preferences, health goals, and biometrics to create tailored meal plans and provide real-time nutritional advice.',
                icon: 'fas fa-utensils',
                color: '#FF9FF3',
                link: '#'
            },
            {
                id: 5,
                name: 'CreativeForge',
                shortDescription: 'AI-assisted creative content generator',
                longDescription: 'CreativeForge is an AI-powered tool for artists, writers, and musicians. It provides inspiration, generates ideas, and even collaborates with you to create unique pieces of art, stories, or musical compositions.',
                icon: 'fas fa-paint-brush',
                color: '#FFC75F',
                link: '#'
            },
            {
                id: 6,
                name: 'SafeGuardAI',
                shortDescription: 'Intelligent home and personal security',
                longDescription: 'SafeGuardAI uses advanced computer vision and anomaly detection to keep your home and loved ones safe. It integrates with your existing security systems and provides real-time alerts and recommendations.',
                icon: 'fas fa-shield-alt',
                color: '#6A5ACD',
                link: '#'
            }
        ]
    },
    methods: {
        selectApp(app) {
            this.selectedApp = app;
        },
        closeDetails() {
            this.selectedApp = null;
        }
    }
});