Add index.html
هذا الالتزام موجود في:
263
index.html
Normal file
263
index.html
Normal file
@@ -0,0 +1,263 @@
|
|||||||
|
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-color: white; /* Ensure the iframe has a white background */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>COO | Ghaymah Systems</title>
|
||||||
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600&family=JetBrains+Mono:wght@300;400&display=swap" rel="stylesheet">
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--bg: #050505;
|
||||||
|
--accent: #ffffff;
|
||||||
|
--dim-text: #888888;
|
||||||
|
--dim-line: rgba(255, 255, 255, 0.12);
|
||||||
|
--highlight-bg: rgba(255, 255, 255, 0.03);
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: var(--bg);
|
||||||
|
color: var(--accent);
|
||||||
|
font-family: 'Inter', sans-serif;
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* High-Contrast Tech Grid */
|
||||||
|
.math-grid {
|
||||||
|
position: fixed;
|
||||||
|
top: 0; left: 0; width: 100%; height: 100%;
|
||||||
|
background-image:
|
||||||
|
linear-gradient(var(--dim-line) 1px, transparent 1px),
|
||||||
|
linear-gradient(90deg, var(--dim-line) 1px, transparent 1px);
|
||||||
|
background-size: 50px 50px;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-card {
|
||||||
|
width: 500px; /* Slightly wider to accommodate powerful text */
|
||||||
|
padding: 50px;
|
||||||
|
background: #000;
|
||||||
|
border: 1px solid var(--dim-line);
|
||||||
|
position: relative;
|
||||||
|
box-shadow: 0 0 100px rgba(0,0,0,1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.corner-accent {
|
||||||
|
position: absolute;
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
|
border: 1px solid var(--accent);
|
||||||
|
}
|
||||||
|
.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
|
||||||
|
.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
|
||||||
|
|
||||||
|
/* Header */
|
||||||
|
.profile-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 20px;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile-img {
|
||||||
|
width: 64px;
|
||||||
|
height: 64px;
|
||||||
|
filter: grayscale(100%);
|
||||||
|
border: 1px solid var(--dim-line);
|
||||||
|
}
|
||||||
|
|
||||||
|
.identity h1 {
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 400;
|
||||||
|
letter-spacing: -0.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.identity p {
|
||||||
|
font-family: 'JetBrains Mono', monospace;
|
||||||
|
font-size: 10px;
|
||||||
|
color: var(--dim-text);
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
margin-top: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* THE GHAYMAH MANIFESTO (The Sovereign Version) */
|
||||||
|
.company-manifesto {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
padding-bottom: 30px;
|
||||||
|
border-bottom: 1px solid var(--dim-line);
|
||||||
|
}
|
||||||
|
|
||||||
|
.manifesto-label {
|
||||||
|
font-family: 'JetBrains Mono', monospace;
|
||||||
|
font-size: 9px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: var(--dim-text);
|
||||||
|
letter-spacing: 3px;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.manifesto-text {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.7;
|
||||||
|
font-weight: 300;
|
||||||
|
color: #cccccc;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
.manifesto-text b {
|
||||||
|
color: var(--accent);
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Contact List - Two Column Grid */
|
||||||
|
.data-list {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.data-row {
|
||||||
|
text-decoration: none;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.data-row:hover .value {
|
||||||
|
color: #fff;
|
||||||
|
text-shadow: 0 0 8px rgba(255,255,255,0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
font-family: 'JetBrains Mono', monospace;
|
||||||
|
font-size: 8px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: var(--dim-text);
|
||||||
|
letter-spacing: 1.5px;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.value {
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 300;
|
||||||
|
color: var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Footer Telemetry */
|
||||||
|
.footer {
|
||||||
|
margin-top: 40px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-family: 'JetBrains Mono', monospace;
|
||||||
|
font-size: 10px;
|
||||||
|
color: var(--dim-text);
|
||||||
|
border-top: 1px solid var(--dim-line);
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.geo-item {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.coord { opacity: 0.5; margin-bottom: 2px; }
|
||||||
|
.loc { font-size: 9px; letter-spacing: 1px; }
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="math-grid"></div>
|
||||||
|
|
||||||
|
<div class="main-card">
|
||||||
|
<div class="corner-accent tl"></div>
|
||||||
|
<div class="corner-accent tr"></div>
|
||||||
|
|
||||||
|
<!-- Header -->
|
||||||
|
<div class="profile-row">
|
||||||
|
<img src="https://ui-avatars.com/api/?name=COO&background=000&color=fff&size=256" class="profile-img" alt="Profile">
|
||||||
|
<div class="identity">
|
||||||
|
<h1>Abd Allah Najjar</h1>
|
||||||
|
<p>Chief Operating Officer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- THE SOVEREIGN MANIFESTO -->
|
||||||
|
<div class="company-manifesto">
|
||||||
|
<span class="manifesto-label">Mission // Ghaymah Systems</span>
|
||||||
|
<p class="manifesto-text">
|
||||||
|
Advancing <b>digital sovereignty</b> through the engineering of independent, localized cloud infrastructure. We eliminate reliance on external vendors by building <b class="text-white">autonomous technology stacks</b> and fostering a robust, home-grown ecosystem designed for regional security and computational independence.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Contact Grid -->
|
||||||
|
<div class="data-list">
|
||||||
|
<a href="mailto:abdallah@ghaymah.systems" class="data-row">
|
||||||
|
<span class="label">Protocol: Mail</span>
|
||||||
|
<span class="value">abdallah@ghaymah.systems</span>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a href="tel:+966XXXXXXXX" class="data-row">
|
||||||
|
<span class="label">Protocol: Voice</span>
|
||||||
|
<span class="value">+966 5X XXX XXXX</span>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a href="https://linkedin.com/in/yourprofile" class="data-row">
|
||||||
|
<span class="label">Protocol: ID</span>
|
||||||
|
<span class="value">ghaymah-coo</span>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a href="https://ghaymah.systems" class="data-row">
|
||||||
|
<span class="label">Protocol: Web</span>
|
||||||
|
<span class="value">ghaymah.systems</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Regional Nodes -->
|
||||||
|
<div class="footer">
|
||||||
|
<div class="geo-item">
|
||||||
|
<span class="coord">45.50°N</span>
|
||||||
|
<span class="loc">MTL</span>
|
||||||
|
</div>
|
||||||
|
<div class="geo-item">
|
||||||
|
<span class="coord">48.86°N</span>
|
||||||
|
<span class="loc">PAR</span>
|
||||||
|
</div>
|
||||||
|
<div class="geo-item">
|
||||||
|
<span class="coord">33.51°N</span>
|
||||||
|
<span class="loc">DAM</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
المرجع في مشكلة جديدة
حظر مستخدم