1
0

Initial exam template: Ghaymah GenAI Engineer (60 min)

هذا الالتزام موجود في:
Ghaymah
2026-08-31 06:44:45 +00:00
التزام 08cb1ef544
9 ملفات معدلة مع 510 إضافات و0 حذوفات

عرض الملف

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>مرحباً غيمة 👋</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="card">
<p class="eyebrow">Ghaymah GenAI Interview — Q4</p>
<h1>مرحباً، أنا <span class="highlight">اسمك هنا</span></h1>
<p class="subtitle">This is my static site, deployed on <strong>Ghaymah</strong>. Replace this text with your CV, your Q1 memory design, or anything you like.</p>
<div class="badges">
<span class="badge">قبيلة Qabilah</span>
<span class="badge">مُرتكز Mortakaz</span>
<span class="badge">غيمة Ghaymah</span>
</div>
<p class="footer">Built in ~10 minutes · Deployed on deploy.ghaymah.systems</p>
</main>
</body>
</html>

عرض الملف

@@ -0,0 +1,48 @@
:root {
--ink: #1a2332;
--muted: #5b6675;
--accent: #0e9f8f;
--card: #ffffff;
--bg: linear-gradient(135deg, #f4f7fb 0%, #e8f1f2 100%);
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
font-family: "Segoe UI", Tahoma, system-ui, sans-serif;
background: var(--bg);
color: var(--ink);
}
.card {
background: var(--card);
max-width: 620px;
margin: 2rem;
padding: 2.5rem 2.75rem;
border-radius: 18px;
box-shadow: 0 20px 60px rgba(20, 40, 60, 0.12);
text-align: center;
}
.eyebrow {
margin: 0 0 0.5rem;
font-size: 0.8rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--accent);
font-weight: 700;
}
h1 { margin: 0.25rem 0 0.75rem; font-size: 2rem; line-height: 1.3; }
.highlight { color: var(--accent); }
.subtitle { color: var(--muted); line-height: 1.7; margin: 0 auto 1.75rem; max-width: 44ch; }
.badges { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.badge {
background: #eef6f5;
color: #0b7267;
border: 1px solid #d3e9e6;
padding: 0.4rem 0.9rem;
border-radius: 999px;
font-size: 0.85rem;
font-weight: 600;
}
.footer { color: var(--muted); font-size: 0.8rem; margin: 0; }