File size: 5,978 Bytes
3f46192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About NutriBot - IronCore Fitness</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
    <custom-navbar></custom-navbar>
    
    <main class="flex-grow container mx-auto px-4 py-8">
        <div class="max-w-4xl mx-auto">
            <div class="bg-white rounded-lg shadow-lg p-8 mb-6">
                <div class="text-center mb-8">
                    <div class="inline-flex items-center justify-center w-20 h-20 bg-green-100 rounded-full mb-4">
                        <i data-feather="zap" class="w-10 h-10 text-green-600"></i>
                    </div>
                    <h1 class="text-4xl font-bold text-gray-800 mb-2">About NutriBot</h1>
                    <p class="text-lg text-gray-600">Your AI-Powered Nutrition Assistant</p>
                </div>
                
                <div class="grid md:grid-cols-2 gap-8 mb-8">
                    <div>
                        <h2 class="text-2xl font-semibold text-gray-800 mb-4 flex items-center gap-2">
                            <i data-feather="target" class="w-6 h-6 text-green-600"></i>
                            Our Mission
                        </h2>
                        <p class="text-gray-600 mb-4">
                            NutriBot is designed to make nutrition advice accessible and personalized for fitness enthusiasts. 
                            We combine cutting-edge AI technology with proven nutritional science to help you make informed 
                            food choices that support your fitness goals.
                        </p>
                        <p class="text-gray-600">
                            Whether you're looking for post-workout meal suggestions, calorie information, or general 
                            nutrition guidance, NutriBot is here to help 24/7.
                        </p>
                    </div>
                    
                    <div>
                        <h2 class="text-2xl font-semibold text-gray-800 mb-4 flex items-center gap-2">
                            <i data-feather="star" class="w-6 h-6 text-green-600"></i>
                            Key Features
                        </h2>
                        <ul class="space-y-3">
                            <li class="flex items-start gap-2">
                                <i data-feather="check" class="w-5 h-5 text-green-600 mt-0.5"></i>
                                <span class="text-gray-600">Instant nutrition and fitness food advice</span>
                            </li>
                            <li class="flex items-start gap-2">
                                <i data-feather="check" class="w-5 h-5 text-green-600 mt-0.5"></i>
                                <span class="text-gray-600">Personalized conversation memory</span>
                            </li>
                            <li class="flex items-start gap-2">
                                <i data-feather="check" class="w-5 h-5 text-green-600 mt-0.5"></i>
                                <span class="text-gray-600">High-protein meal recommendations</span>
                            </li>
                            <li class="flex items-start gap-2">
                                <i data-feather="check" class="w-5 h-5 text-green-600 mt-0.5"></i>
                                <span class="text-gray-600">Calorie estimates for common foods</span>
                            </li>
                        </ul>
                    </div>
                </div>
                
                <div class="bg-green-50 rounded-lg p-6 mb-8">
                    <h2 class="text-2xl font-semibold text-gray-800 mb-4 flex items-center gap-2">
                        <i data-feather="shield" class="w-6 h-6 text-green-600"></i>
                        Safety & Guidelines
                    </h2>
                    <div class="grid md:grid-cols-2 gap-4">
                        <div class="flex items-start gap-2">
                            <i data-feather="alert-circle" class="w-5 h-5 text-yellow-600 mt-0.5"></i>
                            <div>
                                <p class="font-semibold text-gray-800">Medical Disclaimer</p>
                                <p class="text-sm text-gray-600">We provide general nutrition advice, not medical diagnosis or treatment</p>
                            </div>
                        </div>
                        <div class="flex items-start gap-2">
                            <i data-feather="info" class="w-5 h-5 text-blue-600 mt-0.5"></i>
                            <div>
                                <p class="font-semibold text-gray-800">Calorie Estimates</p>
                                <p class="text-sm text-gray-600">All calorie counts are approximations and may vary</p>
                            </div>
                        </div>
                    </div>
                </div>
                
                <div class="text-center">
                    <a href="/" class="inline-flex items-center gap-2 bg-green-600 text-white px-6 py-3 rounded-lg hover:bg-green-700 transition-colors">
                        <i data-feather="message-circle" class="w-5 h-5"></i>
                        Try NutriBot Now
                    </a>
                </div>
            </div>
        </div>
    </main>
    
    <custom-footer></custom-footer>
    
    <script src="components/navbar.js"></script>
    <script src="components/footer.js"></script>
    <script src="script.js"></script>
    <script>feather.replace();</script>
</body>
</html>