-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (53 loc) · 2.44 KB
/
Copy pathindex.html
File metadata and controls
59 lines (53 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<title>نقطة بنقطة</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="/manifest.json" />
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<style>
body {
font-family: 'Cairo', sans-serif;
}
.hero {
background: linear-gradient(to right, #e0f7fa, #fff);
}
</style>
</head>
<body class="hero min-h-screen flex flex-col justify-center items-center text-center text-gray-800">
<div class="relative flex flex-col items-center mb-16 text-center">
<h1 class="text-4xl md:text-6xl font-bold text-blue-700 leading-normal">
مرحباً بك في نقطة بنقطة
</h1>
<div class="mt-6">
<span class="bg-blue-100 text-blue-700 text-sm py-1 px-3 rounded-full shadow-sm">
الإصدار 2.2
</span>
</div>
<p class="mt-6 text-lg md:text-xl text-gray-600 max-w-xl">
اختر نوع الآلة الحاسبة التي تريد استخدامها
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 px-4">
<a href="graphing.html" class="bg-blue-600 hover:bg-blue-700 text-white py-4 px-6 rounded-2xl shadow-lg text-xl transition-all">الآلة الحاسبة البيانية</a>
<a href="scientific.html" class="bg-green-600 hover:bg-green-700 text-white py-4 px-6 rounded-2xl shadow-lg text-xl transition-all">الآلة الحاسبة العلمية</a>
<a href="quadratic.html" class="bg-yellow-500 hover:bg-yellow-600 text-white py-4 px-6 rounded-2xl shadow-lg text-xl transition-all">الآلة الحاسبة التربيعية</a>
<a href="statistical.html" class="bg-red-500 hover:bg-red-600 text-white py-4 px-6 rounded-2xl shadow-lg text-xl transition-all">الآلة الحاسبة الإحصائية</a>
</div>
<footer class="mt-16 text-sm text-gray-400">
تم تطوير الموقع من قبل الطالب عمر أبو بكر 💡
</footer>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js')
.then((registration) => {
console.log('Service Worker registered with scope:', registration.scope);
})
.catch((error) => {
console.error('Service Worker registration failed:', error);
});
}
</script>
</body>
</html>