Update index.html
Browse files- index.html +63 -19
index.html
CHANGED
@@ -1,19 +1,63 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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;
|