chore: استيراد أولي من سيرو (ecfe7568) — بلا أي تعديل

نسخة كاملة من مستودع سيرو عند ecfe7568 لتكون أساس تطبيق «انطلق».
نُسخ المتعقَّب في git فقط (12,509 ملفاً / 302 م.ب) بـ git archive، لا
`cp -r` — فاستُثنيت تلقائياً مخلفات البناء (build · node_modules ·
.dart_tool · .gradle · Pods ≈ 10.7 غ.ب) وكل ما يستثنيه .gitignore.

هذا الكوميت **بلا أي تعديل عمداً** حتى يكون كل ما يليه فرقاً مقروءاً
مقابل سيرو الأصلي. سيرو نفسه لم يُمسّ.

⚠️ لا يبني بعد: `.env` و`lib/env/env.g.dart` غير متعقَّبين في سيرو (وهذا
صحيح — أسرار لكل مستأجر). كل تطبيق فلاتر هنا يحتاج .env خاصاً بانطلق ثم
توليد env.g.dart عبر build_runner. لا تُنسخ أسرار سيرو.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Hamza-Ayed
2026-07-27 05:10:29 +03:00
co-authored by Claude Opus 5
commit 92dc6b3641
3654 changed files with 896478 additions and 0 deletions
Binary file not shown.
@@ -0,0 +1,169 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delete Account - Siro</title>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #0A66C2;
--primary-gradient: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
--bg: #0D0D14;
--card-bg: rgba(255, 255, 255, 0.03);
--text-main: #FFFFFF;
--text-muted: #94A3B8;
--border: rgba(255, 255, 255, 0.08);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg);
color: var(--text-main);
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
overflow-x: hidden;
background-image:
radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
radial-gradient(circle at 90% 80%, rgba(29, 78, 216, 0.1) 0%, transparent 40%);
}
.container {
max-width: 500px;
width: 100%;
background: var(--card-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--border);
border-radius: 28px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.container:hover {
transform: translateY(-4px);
box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6);
}
.logo-wrapper {
margin-bottom: 24px;
display: inline-block;
position: relative;
}
.logo-wrapper::after {
content: '';
position: absolute;
top: -8px;
left: -8px;
right: -8px;
bottom: -8px;
border-radius: 50%;
background: var(--primary-gradient);
z-index: -1;
opacity: 0.2;
filter: blur(8px);
}
.app-logo {
width: 90px;
height: 90px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--border);
background: #FFFFFF;
padding: 2px;
}
h1 {
font-size: 28px;
font-weight: 700;
margin-bottom: 16px;
letter-spacing: -0.5px;
background: linear-gradient(to right, #FFFFFF, #E2E8F0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.video-container {
position: relative;
width: 100%;
border-radius: 20px;
overflow: hidden;
border: 1px solid var(--border);
margin-bottom: 24px;
background: #000;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
video {
width: 100%;
max-height: 480px;
display: block;
object-fit: cover;
}
.instructions {
font-size: 15px;
line-height: 1.6;
color: var(--text-muted);
text-align: center;
}
.instructions strong {
color: #FFFFFF;
font-weight: 600;
}
footer {
margin-top: 40px;
font-size: 13px;
color: rgba(255, 255, 255, 0.3);
letter-spacing: 0.5px;
}
footer strong {
color: rgba(255, 255, 255, 0.5);
font-weight: 600;
}
</style>
</head>
<body>
<div class="container">
<div class="logo-wrapper">
<img class="app-logo" src="logo.png" alt="Siro App Logo">
</div>
<h1>Delete Account</h1>
<div class="video-container">
<video controls poster="logo.png">
<source src="animation.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="instructions">
<p>To delete your account, please open the app and navigate to the <strong>Profile</strong> page. Tap on the <strong>Delete My Account</strong> button and follow the instructions.</p>
</div>
</div>
<footer>
<p>&copy; All rights reserved by <strong>Siro LLC</strong></p>
</footer>
</body>
</html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 461 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB