Update index.html
Browse files- index.html +232 -7
index.html
CHANGED
@@ -18,7 +18,6 @@
|
|
18 |
background-color: #ffffff;
|
19 |
}
|
20 |
|
21 |
-
/* Enhanced Navigation Styles */
|
22 |
nav {
|
23 |
background-color: #333;
|
24 |
padding: 1rem;
|
@@ -41,7 +40,7 @@
|
|
41 |
color: white;
|
42 |
text-decoration: none;
|
43 |
font-weight: bold;
|
44 |
-
transition:
|
45 |
padding: 0.5rem 1rem;
|
46 |
border-radius: 4px;
|
47 |
}
|
@@ -61,10 +60,160 @@
|
|
61 |
padding: 0.5rem;
|
62 |
}
|
63 |
|
64 |
-
|
65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
-
/* Enhanced Mobile Styles */
|
68 |
@media (max-width: 768px) {
|
69 |
.menu-toggle {
|
70 |
display: block;
|
@@ -98,7 +247,8 @@
|
|
98 |
padding: 0.75rem;
|
99 |
}
|
100 |
|
101 |
-
.hero-content,
|
|
|
102 |
flex-direction: column;
|
103 |
}
|
104 |
|
@@ -115,6 +265,18 @@
|
|
115 |
.button {
|
116 |
text-align: center;
|
117 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
}
|
119 |
</style>
|
120 |
</head>
|
@@ -130,13 +292,76 @@
|
|
130 |
</ul>
|
131 |
</nav>
|
132 |
|
133 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
|
135 |
<script>
|
136 |
function toggleMenu() {
|
137 |
const navList = document.querySelector('.nav-list');
|
138 |
navList.classList.toggle('active');
|
139 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
</script>
|
141 |
</body>
|
142 |
</html>
|
|
|
18 |
background-color: #ffffff;
|
19 |
}
|
20 |
|
|
|
21 |
nav {
|
22 |
background-color: #333;
|
23 |
padding: 1rem;
|
|
|
40 |
color: white;
|
41 |
text-decoration: none;
|
42 |
font-weight: bold;
|
43 |
+
transition: all 0.3s;
|
44 |
padding: 0.5rem 1rem;
|
45 |
border-radius: 4px;
|
46 |
}
|
|
|
60 |
padding: 0.5rem;
|
61 |
}
|
62 |
|
63 |
+
.hero {
|
64 |
+
padding: 4rem 2rem;
|
65 |
+
text-align: center;
|
66 |
+
max-width: 1200px;
|
67 |
+
margin: 0 auto;
|
68 |
+
}
|
69 |
+
|
70 |
+
.hero-content {
|
71 |
+
display: flex;
|
72 |
+
align-items: center;
|
73 |
+
justify-content: space-between;
|
74 |
+
gap: 2rem;
|
75 |
+
margin-bottom: 4rem;
|
76 |
+
}
|
77 |
+
|
78 |
+
.hero-text {
|
79 |
+
flex: 1;
|
80 |
+
text-align: right;
|
81 |
+
}
|
82 |
+
|
83 |
+
.hero-image {
|
84 |
+
flex: 1;
|
85 |
+
position: relative;
|
86 |
+
background-color: #ff7961;
|
87 |
+
border-radius: 10px;
|
88 |
+
padding: 2rem;
|
89 |
+
}
|
90 |
+
|
91 |
+
.logo {
|
92 |
+
width: 300px;
|
93 |
+
animation: pulse 2s infinite;
|
94 |
+
}
|
95 |
+
|
96 |
+
@keyframes pulse {
|
97 |
+
0% { transform: scale(1); }
|
98 |
+
50% { transform: scale(1.05); }
|
99 |
+
100% { transform: scale(1); }
|
100 |
+
}
|
101 |
+
|
102 |
+
h1 {
|
103 |
+
font-size: 3rem;
|
104 |
+
margin-bottom: 1rem;
|
105 |
+
color: #333;
|
106 |
+
}
|
107 |
+
|
108 |
+
.subtitle {
|
109 |
+
font-size: 1.2rem;
|
110 |
+
color: #666;
|
111 |
+
margin-bottom: 2rem;
|
112 |
+
}
|
113 |
+
|
114 |
+
.buttons {
|
115 |
+
display: flex;
|
116 |
+
gap: 1rem;
|
117 |
+
margin-top: 2rem;
|
118 |
+
}
|
119 |
+
|
120 |
+
.button {
|
121 |
+
padding: 0.8rem 1.5rem;
|
122 |
+
border-radius: 5px;
|
123 |
+
text-decoration: none;
|
124 |
+
font-weight: bold;
|
125 |
+
transition: all 0.3s;
|
126 |
+
}
|
127 |
+
|
128 |
+
.button-primary {
|
129 |
+
background-color: #333;
|
130 |
+
color: white;
|
131 |
+
}
|
132 |
+
|
133 |
+
.button-primary:hover {
|
134 |
+
background-color: #444;
|
135 |
+
}
|
136 |
+
|
137 |
+
.button-secondary {
|
138 |
+
border: 2px solid #333;
|
139 |
+
color: #333;
|
140 |
+
}
|
141 |
+
|
142 |
+
.button-secondary:hover {
|
143 |
+
background-color: #333;
|
144 |
+
color: white;
|
145 |
+
}
|
146 |
+
|
147 |
+
.capabilities {
|
148 |
+
display: grid;
|
149 |
+
grid-template-columns: repeat(4, 1fr);
|
150 |
+
gap: 2rem;
|
151 |
+
text-align: center;
|
152 |
+
margin-top: 4rem;
|
153 |
+
}
|
154 |
+
|
155 |
+
.capability {
|
156 |
+
display: flex;
|
157 |
+
flex-direction: column;
|
158 |
+
align-items: center;
|
159 |
+
gap: 1rem;
|
160 |
+
padding: 1.5rem;
|
161 |
+
border-radius: 8px;
|
162 |
+
transition: transform 0.3s;
|
163 |
+
}
|
164 |
+
|
165 |
+
.capability:hover {
|
166 |
+
transform: translateY(-5px);
|
167 |
+
}
|
168 |
+
|
169 |
+
.icon {
|
170 |
+
font-size: 2.5rem;
|
171 |
+
margin-bottom: 0.5rem;
|
172 |
+
}
|
173 |
+
|
174 |
+
h2 {
|
175 |
+
font-size: 1.5rem;
|
176 |
+
color: #333;
|
177 |
+
margin-bottom: 0.5rem;
|
178 |
+
}
|
179 |
+
|
180 |
+
p {
|
181 |
+
color: #666;
|
182 |
+
line-height: 1.6;
|
183 |
+
}
|
184 |
+
|
185 |
+
.featured-section {
|
186 |
+
background-color: #f5f5f5;
|
187 |
+
padding: 4rem 2rem;
|
188 |
+
margin-top: 4rem;
|
189 |
+
}
|
190 |
+
|
191 |
+
.featured-content {
|
192 |
+
max-width: 1200px;
|
193 |
+
margin: 0 auto;
|
194 |
+
display: flex;
|
195 |
+
align-items: center;
|
196 |
+
gap: 3rem;
|
197 |
+
}
|
198 |
+
|
199 |
+
.featured-image {
|
200 |
+
flex: 1;
|
201 |
+
border-radius: 10px;
|
202 |
+
overflow: hidden;
|
203 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
204 |
+
}
|
205 |
+
|
206 |
+
.featured-image img {
|
207 |
+
width: 100%;
|
208 |
+
height: auto;
|
209 |
+
display: block;
|
210 |
+
}
|
211 |
+
|
212 |
+
.featured-text {
|
213 |
+
flex: 1;
|
214 |
+
text-align: right;
|
215 |
+
}
|
216 |
|
|
|
217 |
@media (max-width: 768px) {
|
218 |
.menu-toggle {
|
219 |
display: block;
|
|
|
247 |
padding: 0.75rem;
|
248 |
}
|
249 |
|
250 |
+
.hero-content,
|
251 |
+
.featured-content {
|
252 |
flex-direction: column;
|
253 |
}
|
254 |
|
|
|
265 |
.button {
|
266 |
text-align: center;
|
267 |
}
|
268 |
+
|
269 |
+
h1 {
|
270 |
+
font-size: 2rem;
|
271 |
+
}
|
272 |
+
|
273 |
+
.hero {
|
274 |
+
padding: 2rem 1rem;
|
275 |
+
}
|
276 |
+
|
277 |
+
.featured-section {
|
278 |
+
padding: 2rem 1rem;
|
279 |
+
}
|
280 |
}
|
281 |
</style>
|
282 |
</head>
|
|
|
292 |
</ul>
|
293 |
</nav>
|
294 |
|
295 |
+
<main class="hero">
|
296 |
+
<div class="hero-content">
|
297 |
+
<div class="hero-text">
|
298 |
+
<h1>تعرف على نموذج الذكاء ا��مصري</h1>
|
299 |
+
<p class="subtitle">أول نموذج ذكاء اصطناعي متكامل في مصر. مصمم للإبداع والابتكار وحل المشكلات المعقدة.</p>
|
300 |
+
<div class="buttons">
|
301 |
+
<a href="#" class="button button-primary">جرب النموذج</a>
|
302 |
+
<a href="#" class="button button-secondary">واجهة API</a>
|
303 |
+
</div>
|
304 |
+
</div>
|
305 |
+
<div class="hero-image">
|
306 |
+
<img src="https://ufastpro.com/wp-content/uploads/2024/12/3.png" alt="شعار الذكاء الاصطناعي" class="logo">
|
307 |
+
</div>
|
308 |
+
</div>
|
309 |
+
|
310 |
+
<section class="capabilities">
|
311 |
+
<div class="capability">
|
312 |
+
<div class="icon">🧠</div>
|
313 |
+
<h2>تفكير متقدم</h2>
|
314 |
+
<p>قدرات تحليلية وإدراكية متطورة</p>
|
315 |
+
</div>
|
316 |
+
<div class="capability">
|
317 |
+
<div class="icon">👁️</div>
|
318 |
+
<h2>تحليل الصور</h2>
|
319 |
+
<p>فهم وتحليل المحتوى البصري</p>
|
320 |
+
</div>
|
321 |
+
<div class="capability">
|
322 |
+
<div class="icon">💻</div>
|
323 |
+
<h2>برمجة ذكية</h2>
|
324 |
+
<p>إنشاء وتحليل التعليمات البرمجية</p>
|
325 |
+
</div>
|
326 |
+
<div class="capability">
|
327 |
+
<div class="icon">🌐</div>
|
328 |
+
<h2>دعم متعدد اللغات</h2>
|
329 |
+
<p>معالجة وترجمة بين اللغات المختلفة</p>
|
330 |
+
</div>
|
331 |
+
</section>
|
332 |
+
</main>
|
333 |
+
|
334 |
+
<section class="featured-section">
|
335 |
+
<div class="featured-content">
|
336 |
+
<div class="featured-image">
|
337 |
+
<img src="/api/placeholder/600/400" alt="صورة توضيحية للذكاء الاصطناعي">
|
338 |
+
</div>
|
339 |
+
<div class="featured-text">
|
340 |
+
<h2>مستقبل الذكاء الاصطناعي في مصر</h2>
|
341 |
+
<p>نحن نعمل على تطوير حلول ذكاء اصطناعي متقدمة تلبي احتياجات السوق المصري والعربي. من خلال التركيز على الابتكار والتطوير المستمر، نسعى لتقديم حلول تكنولوجية متطورة تساهم في التحول الرقمي وتعزيز الاقتصاد الرقمي.</p>
|
342 |
+
<div class="buttons">
|
343 |
+
<a href="#" class="button button-primary">اكتشف المزيد</a>
|
344 |
+
</div>
|
345 |
+
</div>
|
346 |
+
</div>
|
347 |
+
</section>
|
348 |
|
349 |
<script>
|
350 |
function toggleMenu() {
|
351 |
const navList = document.querySelector('.nav-list');
|
352 |
navList.classList.toggle('active');
|
353 |
}
|
354 |
+
|
355 |
+
// Close menu when clicking outside
|
356 |
+
document.addEventListener('click', function(event) {
|
357 |
+
const nav = document.querySelector('nav');
|
358 |
+
const navList = document.querySelector('.nav-list');
|
359 |
+
const menuToggle = document.querySelector('.menu-toggle');
|
360 |
+
|
361 |
+
if (!nav.contains(event.target) && navList.classList.contains('active')) {
|
362 |
+
navList.classList.remove('active');
|
363 |
+
}
|
364 |
+
});
|
365 |
</script>
|
366 |
</body>
|
367 |
</html>
|