stat2025 commited on
Commit
6d2c5fa
·
verified ·
1 Parent(s): db83f9b

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +32 -17
index.html CHANGED
@@ -1,19 +1,34 @@
1
  <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
  <!doctype html>
2
+ <html lang="ar" dir="rtl">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width,initial-scale=1" />
6
+ <title>منصة معالجة التذاكر</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap" rel="stylesheet">
8
+ <style>
9
+ :root{--primary:#4137A8;--primary2:#1CADE4;--bg:#F6F8FB;--card:#fff;--text:#1B2559;--muted:#667085;--border:#E5E7EB;}
10
+ body{margin:0;background:var(--bg);color:var(--text);font-family:'Cairo',system-ui}
11
+ .container{max-width:1100px;margin:0 auto;padding:16px}
12
+ .hero{border-radius:16px;padding:24px;background:linear-gradient(180deg,#fff,#fbfdff);border:1px solid var(--border);box-shadow:0 8px 26px rgba(16,24,40,.06);margin:12px 0}
13
+ h1{margin:0 0 6px 0;font-weight:700;color:var(--primary);font-size:clamp(22px,3vw,32px)}
14
+ .sub{color:var(--muted)} .sub b{color:var(--primary)}
15
+ .card{background:var(--card);border:1px solid var(--border);border-radius:14px;padding:18px;box-shadow:0 6px 18px rgba(16,24,40,.05)}
16
+ .btn{display:inline-block;margin-top:10px;padding:12px 18px;border-radius:12px;color:#fff;text-decoration:none;background:linear-gradient(90deg,var(--primary),var(--primary2));font-weight:700}
17
+ .footer{color:var(--muted);text-align:center;margin-top:24px}
18
+ </style>
19
+ </head>
20
+ <body>
21
+ <div class="container">
22
+ <div class="hero">
23
+ <h1>منصة معالجة التذاكر</h1>
24
+ <div class="sub">تطوير وإعداد — <b>نوف الناصر</b></div>
25
+ </div>
26
+ <div class="card">
27
+ <p>حوّلي رسائل التذاكر إلى جدول مُرتّب ثم صدّريه إلى Excel فورًا.</p>
28
+ <!-- عدّلي الرابط ليشير لاسم الـGradio بعد إعادة تسميته -->
29
+ <a class="btn" href="https://stat2025-ticket-parser-app.hf.space/">ابدأ الآن</a>
30
+ </div>
31
+ <div class="footer">© جميع الحقوق محفوظة — نوف الناصر</div>
32
+ </div>
33
+ </body>
34
  </html>