madibaalbert commited on
Commit
083feba
·
verified ·
1 Parent(s): 826ca38

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +63 -0
index.html ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>OmniTech Research | Sovereign AI</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <style>
9
+ @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;500&family=Inter:wght@400;700&display=swap');
10
+ body { font-family: 'Inter', sans-serif; background-color: #0b0f19; color: #e5e7eb; }
11
+ .code-font { font-family: 'Fira Code', monospace; }
12
+ .gradient-border {
13
+ border: 1px solid;
14
+ border-image: linear-gradient(to right, #3b82f6, #10b981) 1;
15
+ }
16
+ </style>
17
+ </head>
18
+ <body class="p-8 md:p-16">
19
+ <div class="max-w-4xl mx-auto">
20
+ <!-- Header -->
21
+ <header class="mb-16">
22
+ <h1 class="text-5xl font-extrabold mb-4 bg-clip-text text-transparent bg-gradient-to-r from-blue-500 to-emerald-400">
23
+ OmniTech Research
24
+ </h1>
25
+ <p class="text-xl text-gray-400 code-font">// Architecting Sovereign Infrastructures & Low-Level Ecosystems</p>
26
+ </header>
27
+
28
+ <!-- Mission -->
29
+ <section class="mb-12">
30
+ <h2 class="text-2xl font-bold mb-4 text-white">Manifeste</h2>
31
+ <p class="text-lg leading-relaxed text-gray-300">
32
+ Basé à Douala, Cameroun, OmniTech Research est le bras armé de l'innovation d'OmniGroup.
33
+ Nous ne nous contentons pas de consommer de l'IA ; nous bâtissons les couches de bas niveau
34
+ nécessaires à une véritable souveraineté technologique africaine.
35
+ </p>
36
+ </section>
37
+
38
+ <!-- Pillars -->
39
+ <div class="grid md:grid-cols-3 gap-6 mb-12">
40
+ <div class="p-6 bg-gray-900 rounded-lg border border-gray-800">
41
+ <h3 class="font-bold text-blue-400 mb-2">Genesis Language</h3>
42
+ <p class="text-sm text-gray-400">Langage unifié pour le web et l'embarqué. Performance native, syntaxe universelle.</p>
43
+ </div>
44
+ <div class="p-6 bg-gray-900 rounded-lg border border-gray-800">
45
+ <h3 class="font-bold text-emerald-400 mb-2">Pangea AI</h3>
46
+ <p class="text-sm text-gray-400">Recherche avancée en NLP dédiée à la diversité des langues africaines.</p>
47
+ </div>
48
+ <div class="p-6 bg-gray-900 rounded-lg border border-gray-800">
49
+ <h3 class="font-bold text-purple-400 mb-2">Proton System</h3>
50
+ <p class="text-sm text-gray-400">Outillage de productivité et infrastructures cloud de haute performance.</p>
51
+ </div>
52
+ </div>
53
+
54
+ <!-- Meta Data -->
55
+ <footer class="mt-16 pt-8 border-t border-gray-800 flex flex-wrap gap-4 text-xs code-font text-gray-500">
56
+ <span>LOCATION: DOUALA_CM</span>
57
+ <span>STATUS: ACTIVE_RESEARCH</span>
58
+ <span>FOUNDER: MADIBA_ELATE</span>
59
+ <span>FOCUS: DEEP_ENGINEERING</span>
60
+ </footer>
61
+ </div>
62
+ </body>
63
+ </html>