joermd commited on
Commit
5f97ed6
·
verified ·
1 Parent(s): 50b394d

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +193 -56
index.html CHANGED
@@ -1,63 +1,200 @@
1
- import React from 'react';
2
- import { MessageCircle, Brain, Image, FileText, Code } from 'lucide-react';
3
-
4
- const HomePage = () => {
5
- return (
6
- <div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100">
7
- {/* الرأس */}
8
- <header className="bg-white shadow-md">
9
- <div className="container mx-auto px-4 py-6">
10
- <div className="flex items-center justify-between">
11
- <h1 className="text-2xl font-bold text-indigo-600">Speedy Sons</h1>
12
- <nav className="space-x-4 text-right">
13
- <button className="px-4 py-2 text-indigo-600 hover:text-indigo-800">الرئيسية</button>
14
- <button className="px-4 py-2 text-indigo-600 hover:text-indigo-800">خدماتنا</button>
15
- <button className="px-4 py-2 text-indigo-600 hover:text-indigo-800">تواصل معنا</button>
16
- </nav>
17
- </div>
18
- </div>
19
- </header>
20
 
21
- {/* القسم الرئيسي */}
22
- <main className="container mx-auto px-4 py-12">
23
- <div className="text-center mb-16">
24
- <h2 className="text-4xl font-bold text-gray-900 mb-4">أول نموذج ذكاء اصطناعي باللغة العربية</h2>
25
- <p className="text-xl text-gray-600">اكتشف قوة الذكاء الاصطناعي بلغتك الأم</p>
26
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
- {/* خدمات الذكاء الاصطناعي */}
29
- <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
30
- <div className="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition-shadow">
31
- <MessageCircle className="w-12 h-12 text-indigo-600 mb-4" />
32
- <h3 className="text-xl font-semibold mb-2">توليد النصوص</h3>
33
- <p className="text-gray-600">إنشاء محتوى عربي أصيل بتقنيات الذكاء الاصطناعي</p>
34
- <button className="mt-4 bg-indigo-600 text-white px-6 py-2 rounded-lg hover:bg-indigo-700">جرب الآن</button>
35
- </div>
36
-
37
- <div className="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition-shadow">
38
- <Brain className="w-12 h-12 text-indigo-600 mb-4" />
39
- <h3 className="text-xl font-semibold mb-2">تحليل المشاعر</h3>
40
- <p className="text-gray-600">تحليل المشاعر في النصوص العربية بدقة عالية</p>
41
- <button className="mt-4 bg-indigo-600 text-white px-6 py-2 rounded-lg hover:bg-indigo-700">جرب الآن</button>
42
- </div>
43
-
44
- <div className="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition-shadow">
45
- <Image className="w-12 h-12 text-indigo-600 mb-4" />
46
- <h3 className="text-xl font-semibold mb-2">توليد الصور</h3>
47
- <p className="text-gray-600">إنشاء صور إبداعية من وصف نصي عربي</p>
48
- <button className="mt-4 bg-indigo-600 text-white px-6 py-2 rounded-lg hover:bg-indigo-700">جرب الآن</button>
49
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  </div>
51
- </main>
 
 
 
 
52
 
53
- {/* التذييل */}
54
- <footer className="bg-gray-800 text-white py-8 mt-16">
55
- <div className="container mx-auto px-4 text-center">
56
- <p className="text-sm">جميع الحقوق محفوظة © 2025 Speedy Sons</p>
 
 
 
 
 
 
 
 
 
 
 
57
  </div>
58
- </footer>
59
  </div>
60
- );
61
- };
62
 
63
- export default HomePage;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>