Update index.html
Browse files- index.html +197 -76
index.html
CHANGED
@@ -14,131 +14,252 @@
|
|
14 |
font-family: 'Cairo', sans-serif;
|
15 |
}
|
16 |
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
padding: 4rem 2rem;
|
|
|
19 |
max-width: 1200px;
|
20 |
margin: 0 auto;
|
21 |
}
|
22 |
|
23 |
-
.
|
24 |
display: flex;
|
25 |
align-items: center;
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
animation: fadeInUp 0.6s forwards;
|
30 |
}
|
31 |
|
32 |
-
.
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
.feature:nth-child(3) {
|
37 |
-
animation-delay: 0.4s;
|
38 |
}
|
39 |
|
40 |
-
.
|
41 |
flex: 1;
|
|
|
|
|
42 |
border-radius: 10px;
|
43 |
-
|
44 |
-
margin: 0 2rem;
|
45 |
}
|
46 |
|
47 |
-
.
|
48 |
-
width:
|
49 |
-
|
50 |
-
object-fit: cover;
|
51 |
-
transition: transform 0.3s ease;
|
52 |
}
|
53 |
|
54 |
-
|
55 |
-
transform: scale(1
|
|
|
|
|
56 |
}
|
57 |
|
58 |
-
|
59 |
-
|
60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
}
|
62 |
|
63 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
font-size: 2rem;
|
|
|
|
|
|
|
|
|
|
|
65 |
color: #333;
|
66 |
-
margin-bottom:
|
67 |
-
opacity: 0;
|
68 |
-
animation: fadeInRight 0.6s forwards;
|
69 |
-
animation-delay: 0.3s;
|
70 |
}
|
71 |
|
72 |
-
|
73 |
-
font-size: 1.1rem;
|
74 |
color: #666;
|
75 |
line-height: 1.6;
|
76 |
-
opacity: 0;
|
77 |
-
animation: fadeInRight 0.6s forwards;
|
78 |
-
animation-delay: 0.5s;
|
79 |
}
|
80 |
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
to {
|
87 |
-
opacity: 1;
|
88 |
-
transform: translateY(0);
|
89 |
-
}
|
90 |
}
|
91 |
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
}
|
102 |
|
103 |
@media (max-width: 768px) {
|
104 |
-
.
|
105 |
flex-direction: column;
|
106 |
}
|
107 |
-
.
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
109 |
}
|
110 |
}
|
111 |
</style>
|
112 |
</head>
|
113 |
<body>
|
114 |
-
<
|
115 |
-
<
|
116 |
-
<
|
117 |
-
|
118 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
</div>
|
120 |
-
<div class="
|
121 |
-
<img src="/
|
122 |
</div>
|
123 |
</div>
|
124 |
|
125 |
-
<
|
126 |
-
<div class="
|
127 |
-
<
|
128 |
-
<
|
|
|
129 |
</div>
|
130 |
-
<div class="
|
131 |
-
<
|
|
|
|
|
132 |
</div>
|
133 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
<
|
139 |
</div>
|
140 |
-
<div class="
|
141 |
-
<
|
|
|
|
|
|
|
|
|
142 |
</div>
|
143 |
</div>
|
144 |
</section>
|
|
|
14 |
font-family: 'Cairo', sans-serif;
|
15 |
}
|
16 |
|
17 |
+
body {
|
18 |
+
background-color: #ffffff;
|
19 |
+
}
|
20 |
+
|
21 |
+
/* Navigation Styles */
|
22 |
+
nav {
|
23 |
+
background-color: #333;
|
24 |
+
padding: 1rem 2rem;
|
25 |
+
position: sticky;
|
26 |
+
top: 0;
|
27 |
+
z-index: 1000;
|
28 |
+
}
|
29 |
+
|
30 |
+
.nav-list {
|
31 |
+
display: flex;
|
32 |
+
justify-content: center;
|
33 |
+
gap: 2rem;
|
34 |
+
list-style: none;
|
35 |
+
max-width: 1200px;
|
36 |
+
margin: 0 auto;
|
37 |
+
}
|
38 |
+
|
39 |
+
.nav-list a {
|
40 |
+
color: white;
|
41 |
+
text-decoration: none;
|
42 |
+
font-weight: bold;
|
43 |
+
transition: color 0.3s;
|
44 |
+
}
|
45 |
+
|
46 |
+
.nav-list a:hover {
|
47 |
+
color: #ff7961;
|
48 |
+
}
|
49 |
+
|
50 |
+
.hero {
|
51 |
padding: 4rem 2rem;
|
52 |
+
text-align: center;
|
53 |
max-width: 1200px;
|
54 |
margin: 0 auto;
|
55 |
}
|
56 |
|
57 |
+
.hero-content {
|
58 |
display: flex;
|
59 |
align-items: center;
|
60 |
+
justify-content: space-between;
|
61 |
+
gap: 2rem;
|
62 |
+
margin-bottom: 4rem;
|
|
|
63 |
}
|
64 |
|
65 |
+
.hero-text {
|
66 |
+
flex: 1;
|
67 |
+
text-align: right;
|
|
|
|
|
|
|
68 |
}
|
69 |
|
70 |
+
.hero-image {
|
71 |
flex: 1;
|
72 |
+
position: relative;
|
73 |
+
background-color: #ff7961;
|
74 |
border-radius: 10px;
|
75 |
+
padding: 2rem;
|
|
|
76 |
}
|
77 |
|
78 |
+
.logo {
|
79 |
+
width: 300px;
|
80 |
+
animation: pulse 2s infinite;
|
|
|
|
|
81 |
}
|
82 |
|
83 |
+
@keyframes pulse {
|
84 |
+
0% { transform: scale(1); }
|
85 |
+
50% { transform: scale(1.05); }
|
86 |
+
100% { transform: scale(1); }
|
87 |
}
|
88 |
|
89 |
+
h1 {
|
90 |
+
font-size: 3rem;
|
91 |
+
margin-bottom: 1rem;
|
92 |
+
color: #333;
|
93 |
+
}
|
94 |
+
|
95 |
+
.subtitle {
|
96 |
+
font-size: 1.2rem;
|
97 |
+
color: #666;
|
98 |
+
margin-bottom: 2rem;
|
99 |
+
}
|
100 |
+
|
101 |
+
.buttons {
|
102 |
+
display: flex;
|
103 |
+
gap: 1rem;
|
104 |
+
margin-top: 2rem;
|
105 |
+
}
|
106 |
+
|
107 |
+
.button {
|
108 |
+
padding: 0.8rem 1.5rem;
|
109 |
+
border-radius: 5px;
|
110 |
+
text-decoration: none;
|
111 |
+
font-weight: bold;
|
112 |
+
}
|
113 |
+
|
114 |
+
.button-primary {
|
115 |
+
background-color: #333;
|
116 |
+
color: white;
|
117 |
+
}
|
118 |
+
|
119 |
+
.button-secondary {
|
120 |
+
border: 2px solid #333;
|
121 |
+
color: #333;
|
122 |
}
|
123 |
|
124 |
+
.capabilities {
|
125 |
+
display: grid;
|
126 |
+
grid-template-columns: repeat(4, 1fr);
|
127 |
+
gap: 2rem;
|
128 |
+
text-align: center;
|
129 |
+
margin-top: 4rem;
|
130 |
+
}
|
131 |
+
|
132 |
+
.capability {
|
133 |
+
display: flex;
|
134 |
+
flex-direction: column;
|
135 |
+
align-items: center;
|
136 |
+
gap: 1rem;
|
137 |
+
}
|
138 |
+
|
139 |
+
.icon {
|
140 |
font-size: 2rem;
|
141 |
+
margin-bottom: 0.5rem;
|
142 |
+
}
|
143 |
+
|
144 |
+
h2 {
|
145 |
+
font-size: 1.5rem;
|
146 |
color: #333;
|
147 |
+
margin-bottom: 0.5rem;
|
|
|
|
|
|
|
148 |
}
|
149 |
|
150 |
+
p {
|
|
|
151 |
color: #666;
|
152 |
line-height: 1.6;
|
|
|
|
|
|
|
153 |
}
|
154 |
|
155 |
+
/* New Sections */
|
156 |
+
.featured-section {
|
157 |
+
background-color: #f5f5f5;
|
158 |
+
padding: 4rem 2rem;
|
159 |
+
margin-top: 4rem;
|
|
|
|
|
|
|
|
|
160 |
}
|
161 |
|
162 |
+
.featured-content {
|
163 |
+
max-width: 1200px;
|
164 |
+
margin: 0 auto;
|
165 |
+
display: flex;
|
166 |
+
align-items: center;
|
167 |
+
gap: 3rem;
|
168 |
+
}
|
169 |
+
|
170 |
+
.featured-image {
|
171 |
+
flex: 1;
|
172 |
+
border-radius: 10px;
|
173 |
+
overflow: hidden;
|
174 |
+
}
|
175 |
+
|
176 |
+
.featured-image img {
|
177 |
+
width: 100%;
|
178 |
+
height: auto;
|
179 |
+
display: block;
|
180 |
+
}
|
181 |
+
|
182 |
+
.featured-text {
|
183 |
+
flex: 1;
|
184 |
+
text-align: right;
|
185 |
}
|
186 |
|
187 |
@media (max-width: 768px) {
|
188 |
+
.hero-content, .featured-content {
|
189 |
flex-direction: column;
|
190 |
}
|
191 |
+
.capabilities {
|
192 |
+
grid-template-columns: repeat(2, 1fr);
|
193 |
+
}
|
194 |
+
.nav-list {
|
195 |
+
flex-direction: column;
|
196 |
+
text-align: center;
|
197 |
+
gap: 1rem;
|
198 |
}
|
199 |
}
|
200 |
</style>
|
201 |
</head>
|
202 |
<body>
|
203 |
+
<nav>
|
204 |
+
<ul class="nav-list">
|
205 |
+
<li><a href="#home">الموقع</a></li>
|
206 |
+
<li><a href="#try">جرب سبيدي</a></li>
|
207 |
+
<li><a href="#about">من نحن</a></li>
|
208 |
+
<li><a href="#capabilities">قدرات سبيدي</a></li>
|
209 |
+
<li><a href="#vision">رؤيتنا</a></li>
|
210 |
+
</ul>
|
211 |
+
</nav>
|
212 |
+
|
213 |
+
<main class="hero">
|
214 |
+
<div class="hero-content">
|
215 |
+
<div class="hero-text">
|
216 |
+
<h1>تعرف على نموذج الذكاء المصري</h1>
|
217 |
+
<p class="subtitle">أول نموذج ذكاء اصطناعي متكامل في مصر. مصمم للإبداع والابتكار وحل المشكلات المعقدة.</p>
|
218 |
+
<div class="buttons">
|
219 |
+
<a href="#" class="button button-primary">جرب النموذج</a>
|
220 |
+
<a href="#" class="button button-secondary">واجهة API</a>
|
221 |
+
</div>
|
222 |
</div>
|
223 |
+
<div class="hero-image">
|
224 |
+
<img src="https://ufastpro.com/wp-content/uploads/2024/12/3.png" alt="شعار الذكاء الاصطناعي" class="logo">
|
225 |
</div>
|
226 |
</div>
|
227 |
|
228 |
+
<section class="capabilities">
|
229 |
+
<div class="capability">
|
230 |
+
<div class="icon">🧠</div>
|
231 |
+
<h2>تفكير متقدم</h2>
|
232 |
+
<p>قدرات تحليلية وإدراكية متطورة</p>
|
233 |
</div>
|
234 |
+
<div class="capability">
|
235 |
+
<div class="icon">👁️</div>
|
236 |
+
<h2>تحليل الصور</h2>
|
237 |
+
<p>فهم وتحليل المحتوى البصري</p>
|
238 |
</div>
|
239 |
+
<div class="capability">
|
240 |
+
<div class="icon">💻</div>
|
241 |
+
<h2>برمجة ذكية</h2>
|
242 |
+
<p>إنشاء وتحليل التعليمات البرمجية</p>
|
243 |
+
</div>
|
244 |
+
<div class="capability">
|
245 |
+
<div class="icon">🌐</div>
|
246 |
+
<h2>دعم متعدد اللغات</h2>
|
247 |
+
<p>معالجة وترجمة بين اللغات المختلفة</p>
|
248 |
+
</div>
|
249 |
+
</section>
|
250 |
+
</main>
|
251 |
|
252 |
+
<section class="featured-section">
|
253 |
+
<div class="featured-content">
|
254 |
+
<div class="featured-image">
|
255 |
+
<img src="/api/placeholder/600/400" alt="صورة توضيحية للذكاء الاصطناعي">
|
256 |
</div>
|
257 |
+
<div class="featured-text">
|
258 |
+
<h2>مستقبل الذكاء الاصطناعي في مصر</h2>
|
259 |
+
<p>نحن نعمل على تطوير حلول ذكاء اصطناعي متقدمة تلبي احتياجات السوق المصري والعربي. من خلال التركيز على الابتكار والتطوير المستمر، نسعى لتقديم حلول تكنولوجية متطورة تساهم في التحول الرقمي وتعزيز الاقتصاد الرقمي.</p>
|
260 |
+
<div class="buttons">
|
261 |
+
<a href="#" class="button button-primary">اكتشف المزيد</a>
|
262 |
+
</div>
|
263 |
</div>
|
264 |
</div>
|
265 |
</section>
|