File size: 5,428 Bytes
110e6f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About | Project Chimera</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>
</head>
<body class="bg-gray-50 dark:bg-gray-900 transition-colors duration-300">
    <custom-navbar></custom-navbar>
    <main class="container mx-auto px-4 py-12">
        <section class="text-center mb-16">
            <h1 class="text-5xl font-bold text-gray-800 dark:text-white mb-6">About Project Chimera</h1>
            <p class="text-xl text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">An AI-integrated content publishing platform for autonomous operation and revenue generation.</p>
        </section>

        <div class="max-w-4xl mx-auto bg-white dark:bg-gray-800 rounded-xl shadow-lg p-8 mb-12">
            <h2 class="text-3xl font-bold text-gray-800 dark:text-white mb-6">System Architecture</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
                <div>
                    <h3 class="text-xl font-semibold text-gray-800 dark:text-white mb-4">Core Components</h3>
                    <ul class="space-y-3 text-gray-600 dark:text-gray-300">
                        <li class="flex items-start">
                            <i data-feather="cpu" class="mr-2 mt-1 text-indigo-500"></i>
                            <span>AI-Native Orchestration Engine</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="database" class="mr-2 mt-1 text-indigo-500"></i>
                            <span>Decoupled Component Architecture</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="cloud" class="mr-2 mt-1 text-indigo-500"></i>
                            <span>Serverless Cloud Integration</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="shield" class="mr-2 mt-1 text-indigo-500"></i>
                            <span>Enterprise-Grade Fault Tolerance</span>
                        </li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-xl font-semibold text-gray-800 dark:text-white mb-4">Key Features</h3>
                    <ul class="space-y-3 text-gray-600 dark:text-gray-300">
                        <li class="flex items-start">
                            <i data-feather="edit-3" class="mr-2 mt-1 text-indigo-500"></i>
                            <span>AI Content Generation Pipeline</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="share-2" class="mr-2 mt-1 text-indigo-500"></i>
                            <span>Multi-Platform Distribution</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="dollar-sign" class="mr-2 mt-1 text-indigo-500"></i>
                            <span>Revenue Optimization Module</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="bar-chart-2" class="mr-2 mt-1 text-indigo-500"></i>
                            <span>Performance Analytics</span>
                        </li>
                    </ul>
                </div>
            </div>
        </div>

        <div class="max-w-4xl mx-auto bg-white dark:bg-gray-800 rounded-xl shadow-lg p-8">
            <h2 class="text-3xl font-bold text-gray-800 dark:text-white mb-6">Technology Stack</h2>
            <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
                <div class="flex flex-col items-center p-4 bg-gray-100 dark:bg-gray-700 rounded-lg">
                    <i data-feather="code" class="w-10 h-10 text-indigo-500 mb-2"></i>
                    <span class="font-medium text-gray-800 dark:text-white">Python</span>
                </div>
                <div class="flex flex-col items-center p-4 bg-gray-100 dark:bg-gray-700 rounded-lg">
                    <i data-feather="database" class="w-10 h-10 text-indigo-500 mb-2"></i>
                    <span class="font-medium text-gray-800 dark:text-white">Supabase</span>
                </div>
                <div class="flex flex-col items-center p-4 bg-gray-100 dark:bg-gray-700 rounded-lg">
                    <i data-feather="cpu" class="w-10 h-10 text-indigo-500 mb-2"></i>
                    <span class="font-medium text-gray-800 dark:text-white">Google Gemini</span>
                </div>
                <div class="flex flex-col items-center p-4 bg-gray-100 dark:bg-gray-700 rounded-lg">
                    <i data-feather="cloud" class="w-10 h-10 text-indigo-500 mb-2"></i>
                    <span class="font-medium text-gray-800 dark:text-white">Vercel</span>
                </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>