Update index.html
Browse files- index.html +193 -56
index.html
CHANGED
@@ -1,63 +1,200 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
<
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
</nav>
|
17 |
-
</div>
|
18 |
-
</div>
|
19 |
-
</header>
|
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 |
</div>
|
51 |
-
|
|
|
|
|
|
|
|
|
52 |
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
</div>
|
58 |
-
</footer>
|
59 |
</div>
|
60 |
-
);
|
61 |
-
};
|
62 |
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html dir="rtl" lang="ar">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Speedy Sons - الذكاء الاصطناعي العربي</title>
|
7 |
+
<style>
|
8 |
+
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');
|
9 |
+
|
10 |
+
* {
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
box-sizing: border-box;
|
14 |
+
font-family: 'Tajawal', sans-serif;
|
15 |
+
}
|
|
|
|
|
|
|
|
|
16 |
|
17 |
+
body {
|
18 |
+
background: linear-gradient(135deg, #1a1a2e, #16213e);
|
19 |
+
color: white;
|
20 |
+
}
|
21 |
+
|
22 |
+
.header {
|
23 |
+
padding: 2rem;
|
24 |
+
text-align: center;
|
25 |
+
position: relative;
|
26 |
+
overflow: hidden;
|
27 |
+
}
|
28 |
+
|
29 |
+
.animated-bg {
|
30 |
+
position: absolute;
|
31 |
+
top: 0;
|
32 |
+
left: 0;
|
33 |
+
width: 100%;
|
34 |
+
height: 100%;
|
35 |
+
z-index: 1;
|
36 |
+
}
|
37 |
+
|
38 |
+
.circle {
|
39 |
+
position: absolute;
|
40 |
+
border-radius: 50%;
|
41 |
+
animation: float 6s infinite ease-in-out;
|
42 |
+
}
|
43 |
+
|
44 |
+
.circle-1 {
|
45 |
+
width: 300px;
|
46 |
+
height: 300px;
|
47 |
+
background: rgba(100, 100, 255, 0.1);
|
48 |
+
top: -50px;
|
49 |
+
left: 10%;
|
50 |
+
}
|
51 |
+
|
52 |
+
.circle-2 {
|
53 |
+
width: 200px;
|
54 |
+
height: 200px;
|
55 |
+
background: rgba(255, 100, 255, 0.1);
|
56 |
+
top: 30%;
|
57 |
+
right: 15%;
|
58 |
+
animation-delay: 1s;
|
59 |
+
}
|
60 |
+
|
61 |
+
.content {
|
62 |
+
position: relative;
|
63 |
+
z-index: 2;
|
64 |
+
}
|
65 |
+
|
66 |
+
h1 {
|
67 |
+
font-size: 3.5rem;
|
68 |
+
margin-bottom: 1rem;
|
69 |
+
background: linear-gradient(45deg, #4facfe, #00f2fe);
|
70 |
+
-webkit-background-clip: text;
|
71 |
+
-webkit-text-fill-color: transparent;
|
72 |
+
}
|
73 |
+
|
74 |
+
.services {
|
75 |
+
display: flex;
|
76 |
+
justify-content: center;
|
77 |
+
gap: 2rem;
|
78 |
+
flex-wrap: wrap;
|
79 |
+
padding: 2rem;
|
80 |
+
}
|
81 |
+
|
82 |
+
.service-card {
|
83 |
+
background: rgba(255, 255, 255, 0.1);
|
84 |
+
backdrop-filter: blur(10px);
|
85 |
+
border-radius: 20px;
|
86 |
+
padding: 2rem;
|
87 |
+
width: 300px;
|
88 |
+
text-align: center;
|
89 |
+
transition: transform 0.3s;
|
90 |
+
}
|
91 |
+
|
92 |
+
.service-card:hover {
|
93 |
+
transform: translateY(-10px);
|
94 |
+
}
|
95 |
+
|
96 |
+
.testimonials {
|
97 |
+
padding: 4rem 2rem;
|
98 |
+
}
|
99 |
|
100 |
+
.testimonials h2 {
|
101 |
+
text-align: center;
|
102 |
+
margin-bottom: 3rem;
|
103 |
+
}
|
104 |
+
|
105 |
+
.testimonial-grid {
|
106 |
+
display: grid;
|
107 |
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
108 |
+
gap: 2rem;
|
109 |
+
max-width: 1200px;
|
110 |
+
margin: 0 auto;
|
111 |
+
}
|
112 |
+
|
113 |
+
.testimonial-card {
|
114 |
+
background: rgba(255, 255, 255, 0.1);
|
115 |
+
border-radius: 15px;
|
116 |
+
padding: 1.5rem;
|
117 |
+
text-align: center;
|
118 |
+
}
|
119 |
+
|
120 |
+
.testimonial-img {
|
121 |
+
width: 100px;
|
122 |
+
height: 100px;
|
123 |
+
border-radius: 50%;
|
124 |
+
margin: 0 auto 1rem;
|
125 |
+
object-fit: cover;
|
126 |
+
}
|
127 |
+
|
128 |
+
@keyframes float {
|
129 |
+
0%, 100% { transform: translateY(0); }
|
130 |
+
50% { transform: translateY(-20px); }
|
131 |
+
}
|
132 |
+
|
133 |
+
button {
|
134 |
+
background: linear-gradient(45deg, #4facfe, #00f2fe);
|
135 |
+
border: none;
|
136 |
+
padding: 1rem 2rem;
|
137 |
+
border-radius: 50px;
|
138 |
+
color: white;
|
139 |
+
font-size: 1.2rem;
|
140 |
+
cursor: pointer;
|
141 |
+
transition: transform 0.3s;
|
142 |
+
}
|
143 |
+
|
144 |
+
button:hover {
|
145 |
+
transform: scale(1.05);
|
146 |
+
}
|
147 |
+
</style>
|
148 |
+
</head>
|
149 |
+
<body>
|
150 |
+
<div class="header">
|
151 |
+
<div class="animated-bg">
|
152 |
+
<div class="circle circle-1"></div>
|
153 |
+
<div class="circle circle-2"></div>
|
154 |
</div>
|
155 |
+
<div class="content">
|
156 |
+
<h1>Speedy Sons</h1>
|
157 |
+
<p>أول نموذج ذكاء اصطناعي باللغة العربية</p>
|
158 |
+
</div>
|
159 |
+
</div>
|
160 |
|
161 |
+
<div class="services">
|
162 |
+
<div class="service-card">
|
163 |
+
<h3>توليد النصوص</h3>
|
164 |
+
<p>إنشاء محتوى عربي أصيل باستخدام الذكاء الاصطناعي</p>
|
165 |
+
<button>جرب الآن</button>
|
166 |
+
</div>
|
167 |
+
<div class="service-card">
|
168 |
+
<h3>تحليل المشاعر</h3>
|
169 |
+
<p>تحليل المشاعر في النصوص العربية بدقة عالية</p>
|
170 |
+
<button>جرب الآن</button>
|
171 |
+
</div>
|
172 |
+
<div class="service-card">
|
173 |
+
<h3>الترجمة الذكية</h3>
|
174 |
+
<p>ترجمة احترافية مع الحفاظ على السياق</p>
|
175 |
+
<button>جرب الآن</button>
|
176 |
</div>
|
|
|
177 |
</div>
|
|
|
|
|
178 |
|
179 |
+
<div class="testimonials">
|
180 |
+
<h2>تجارب المستخدمين</h2>
|
181 |
+
<div class="testimonial-grid">
|
182 |
+
<div class="testimonial-card">
|
183 |
+
<img src="/api/placeholder/100/100" alt="مستخدم 1" class="testimonial-img">
|
184 |
+
<h3>أحمد محمد</h3>
|
185 |
+
<p>"ساعدني النموذج في كتابة محتوى احترافي لموقعي بوقت قياسي"</p>
|
186 |
+
</div>
|
187 |
+
<div class="testimonial-card">
|
188 |
+
<img src="/api/placeholder/100/100" alt="مستخدم 2" class="testimonial-img">
|
189 |
+
<h3>سارة أحمد</h3>
|
190 |
+
<p>"دقة الترجمة مذهلة وتوفر علي الكثير من الوقت"</p>
|
191 |
+
</div>
|
192 |
+
<div class="testimonial-card">
|
193 |
+
<img src="/api/placeholder/100/100" alt="مستخدم 3" class="testimonial-img">
|
194 |
+
<h3>محمد خالد</h3>
|
195 |
+
<p>"أفضل نموذج عربي جربته حتى الآن"</p>
|
196 |
+
</div>
|
197 |
+
</div>
|
198 |
+
</div>
|
199 |
+
</body>
|
200 |
+
</html>
|