Update index.html
Browse files- index.html +60 -185
index.html
CHANGED
@@ -18,10 +18,10 @@
|
|
18 |
background-color: #ffffff;
|
19 |
}
|
20 |
|
21 |
-
/* Navigation Styles */
|
22 |
nav {
|
23 |
background-color: #333;
|
24 |
-
padding: 1rem
|
25 |
position: sticky;
|
26 |
top: 0;
|
27 |
z-index: 1000;
|
@@ -34,6 +34,7 @@
|
|
34 |
list-style: none;
|
35 |
max-width: 1200px;
|
36 |
margin: 0 auto;
|
|
|
37 |
}
|
38 |
|
39 |
.nav-list a {
|
@@ -41,166 +42,85 @@
|
|
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 |
-
.
|
51 |
-
|
52 |
-
|
53 |
-
|
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 |
-
|
147 |
-
|
148 |
-
}
|
149 |
-
|
150 |
-
p {
|
151 |
-
color: #666;
|
152 |
-
line-height: 1.6;
|
153 |
}
|
154 |
|
155 |
-
/*
|
156 |
-
|
157 |
-
background-color: #f5f5f5;
|
158 |
-
padding: 4rem 2rem;
|
159 |
-
margin-top: 4rem;
|
160 |
-
}
|
161 |
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
|
|
|
|
169 |
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
|
|
|
|
|
|
|
|
|
|
175 |
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
|
|
181 |
|
182 |
-
|
183 |
-
|
184 |
-
|
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 |
-
|
|
|
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>
|
@@ -210,58 +130,13 @@
|
|
210 |
</ul>
|
211 |
</nav>
|
212 |
|
213 |
-
|
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 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
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>
|
266 |
</body>
|
267 |
</html>
|
|
|
18 |
background-color: #ffffff;
|
19 |
}
|
20 |
|
21 |
+
/* Enhanced Navigation Styles */
|
22 |
nav {
|
23 |
background-color: #333;
|
24 |
+
padding: 1rem;
|
25 |
position: sticky;
|
26 |
top: 0;
|
27 |
z-index: 1000;
|
|
|
34 |
list-style: none;
|
35 |
max-width: 1200px;
|
36 |
margin: 0 auto;
|
37 |
+
position: relative;
|
38 |
}
|
39 |
|
40 |
.nav-list a {
|
|
|
42 |
text-decoration: none;
|
43 |
font-weight: bold;
|
44 |
transition: color 0.3s;
|
45 |
+
padding: 0.5rem 1rem;
|
46 |
+
border-radius: 4px;
|
47 |
}
|
48 |
|
49 |
.nav-list a:hover {
|
50 |
color: #ff7961;
|
51 |
+
background-color: rgba(255, 255, 255, 0.1);
|
52 |
}
|
53 |
|
54 |
+
.menu-toggle {
|
55 |
+
display: none;
|
56 |
+
background: none;
|
57 |
+
border: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
color: white;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
font-size: 1.5rem;
|
60 |
+
cursor: pointer;
|
61 |
+
padding: 0.5rem;
|
|
|
|
|
|
|
|
|
|
|
62 |
}
|
63 |
|
64 |
+
/* Rest of the existing styles remain the same */
|
65 |
+
[Previous styles from hero to media queries remain unchanged]
|
|
|
|
|
|
|
|
|
66 |
|
67 |
+
/* Enhanced Mobile Styles */
|
68 |
+
@media (max-width: 768px) {
|
69 |
+
.menu-toggle {
|
70 |
+
display: block;
|
71 |
+
position: absolute;
|
72 |
+
left: 1rem;
|
73 |
+
top: 1rem;
|
74 |
+
z-index: 1001;
|
75 |
+
}
|
76 |
|
77 |
+
.nav-list {
|
78 |
+
display: none;
|
79 |
+
position: absolute;
|
80 |
+
top: 100%;
|
81 |
+
right: 0;
|
82 |
+
width: 100%;
|
83 |
+
background-color: #333;
|
84 |
+
padding: 1rem;
|
85 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
86 |
+
}
|
87 |
|
88 |
+
.nav-list.active {
|
89 |
+
display: flex;
|
90 |
+
flex-direction: column;
|
91 |
+
align-items: center;
|
92 |
+
gap: 1rem;
|
93 |
+
}
|
94 |
|
95 |
+
.nav-list a {
|
96 |
+
width: 100%;
|
97 |
+
text-align: center;
|
98 |
+
padding: 0.75rem;
|
99 |
+
}
|
100 |
|
|
|
101 |
.hero-content, .featured-content {
|
102 |
flex-direction: column;
|
103 |
}
|
104 |
+
|
105 |
.capabilities {
|
106 |
grid-template-columns: repeat(2, 1fr);
|
107 |
+
gap: 1rem;
|
108 |
}
|
109 |
+
|
110 |
+
.buttons {
|
111 |
flex-direction: column;
|
112 |
+
align-items: stretch;
|
113 |
+
}
|
114 |
+
|
115 |
+
.button {
|
116 |
text-align: center;
|
|
|
117 |
}
|
118 |
}
|
119 |
</style>
|
120 |
</head>
|
121 |
<body>
|
122 |
<nav>
|
123 |
+
<button class="menu-toggle" onclick="toggleMenu()">☰</button>
|
124 |
<ul class="nav-list">
|
125 |
<li><a href="#home">الموقع</a></li>
|
126 |
<li><a href="#try">جرب سبيدي</a></li>
|
|
|
130 |
</ul>
|
131 |
</nav>
|
132 |
|
133 |
+
[Rest of the HTML content remains the same]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|