-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
176 lines (169 loc) · 7.96 KB
/
index.html
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rivera.ai - Innovative AI Solutions</title>
<link rel="icon" type="image/x-icon" href="Images/r.svg">
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #0B1120;
}
.glass-card {
background: rgba(30, 41, 59, 0.5);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 1rem;
}
.feature-card {
transition: transform 0.2s;
}
.feature-card:hover {
transform: translateY(-5px);
}
</style>
</head>
<body class="text-gray-100">
<!-- Navbar -->
<nav class="fixed w-full z-10 bg-slate-900/80 backdrop-blur-xl border-b border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<span class="text-2xl font-bold">
Rivera<span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-purple-600">.ai</span>
</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#home" class="px-3 py-2 text-gray-300 hover:text-white">Features</a>
<a href="#projects" class="px-3 py-2 text-gray-300 hover:text-white">Projects</a>
<a href="https://github.com/orgs/Rivera-ai/repositories" target="_blank" class="bg-purple-600 hover:bg-purple-700 px-4 py-2 rounded-lg text-white ml-4">
Models
</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-32 pb-20 px-4">
<div class="max-w-7xl mx-auto text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-8">
Shaping a world with<br/>
<span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-purple-600">AI innovation.</span>
</h1>
<p class="text-xl text-gray-400 max-w-3xl mx-auto mb-12">
Rivera.ai emerges as an organization to promote new AI and Machine Learning tools on a large scale,
exploring both scientific and commercial approaches.
</p>
<div class="flex flex-wrap justify-center gap-4">
<div class="flex flex-wrap justify-center">
<a href="#projects" class="bg-slate-800 hover:bg-slate-700 px-8 py-3 rounded-lg text-white transition-colors">
Learn more
</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 px-4">
<div class="max-w-7xl mx-auto">
<div class="grid md:grid-cols-4 gap-8">
<div class="glass-card p-6 feature-card">
<div class="w-12 h-12 bg-purple-500/10 rounded-lg flex items-center justify-center mb-4">
<span class="text-2xl">🧠</span>
</div>
<h3 class="text-xl font-semibold mb-2">AI Solutions</h3>
<p class="text-gray-400">
Developing cutting-edge artificial intelligence solutions for real-world problems.
</p>
</div>
<div class="glass-card p-6 feature-card">
<div class="w-12 h-12 bg-purple-500/10 rounded-lg flex items-center justify-center mb-4">
<span class="text-2xl">⚡️</span>
</div>
<h3 class="text-xl font-semibold mb-2">Fast Development</h3>
<p class="text-gray-400">
Rapid implementation using PyTorch and modern tools.
</p>
</div>
<div class="glass-card p-6 feature-card">
<div class="w-12 h-12 bg-purple-500/10 rounded-lg flex items-center justify-center mb-4">
<span class="text-2xl">🌎</span>
</div>
<h3 class="text-xl font-semibold mb-2">Global Impact</h3>
<p class="text-gray-400">
Latin American initiative reaching worldwide audiences.
</p>
</div>
<div class="glass-card p-6 feature-card">
<div class="w-12 h-12 bg-purple-500/10 rounded-lg flex items-center justify-center mb-4">
<span class="text-2xl">💻</span>
</div>
<h3 class="text-xl font-semibold mb-2">Tech Innovation</h3>
<p class="text-gray-400">
Pushing boundaries with advanced technological tools.
</p>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 px-4 bg-slate-900">
<div class="max-w-7xl mx-auto">
<div class="grid md:grid-cols-3 gap-8">
<div class="glass-card overflow-hidden">
<img src="Images/3.webp" alt="Project 2" class="w-full h-48 object-cover"/>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">AI Models</h3>
<p class="text-gray-400 mb-4">
Collection of machine learning models and implementations.
</p>
<a href="models.html" class="text-purple-400 hover:text-purple-300">Read more →</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<!-- <section id="contact" class="py-20 px-4">
<div class="max-w-7xl mx-auto">
<div class="glass-card p-8 max-w-xl mx-auto">
<h2 class="text-3xl font-bold mb-8 text-center">Get in Touch</h2>
<form class="space-y-6">
<div>
<input type="text" placeholder="Name" class="w-full px-4 py-3 rounded-lg bg-slate-800 border border-gray-700 focus:border-purple-500 focus:outline-none">
</div>
<div>
<input type="email" placeholder="Email" class="w-full px-4 py-3 rounded-lg bg-slate-800 border border-gray-700 focus:border-purple-500 focus:outline-none">
</div>
<div>
<textarea placeholder="Message" rows="4" class="w-full px-4 py-3 rounded-lg bg-slate-800 border border-gray-700 focus:border-purple-500 focus:outline-none"></textarea>
</div>
<button type="submit" class="w-full bg-purple-600 hover:bg-purple-700 px-8 py-3 rounded-lg text-white">
Send Message
</button>
</form>
</div>
</div>
</section> -->
<!-- Footer -->
<footer class="py-8 px-4 border-t border-gray-800">
<div class="max-w-7xl mx-auto text-center text-gray-400">
<p>© 2024 Rivera.ai - Innovating with AI from El Salvador 🇸🇻</p>
</div>
</footer>
<script>
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html>