Commit 32948c46 authored by Mahmoud Aglan's avatar Mahmoud Aglan

Clean coherent rebuild: hero with image, normal features, proper proportions

Stop experimenting. Just a normal well-built website:
- Hero: text left, screenshot right, normal size
- Features: 3-col grid with icon/title/description
- Screenshots: 2x2 grid, small with captions
- CTA: navy background, white button
- Footer: 3-col with links
Normal proportions, nothing oversized, nothing weird.
Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
parent af9da542
/* ============================================================ /* ============================================================
El Captain — Homepage El Captain — Homepage
Human-designed: varied rhythm, asymmetry, personality. Simple. Coherent. Normal proportions. Hero with image.
No uniform sections. No repeating patterns.
============================================================ */ ============================================================ */
/* --- Opener: text-only, confident -------------------------------- */ /* --- Hero -------------------------------------------------------- */
.opener { .hero {
padding-block: calc(var(--nav-height) + 4rem) 3rem; padding-block: calc(var(--nav-height) + 3rem) 3rem;
max-width: 680px;
margin-inline: auto;
padding-inline: var(--space-lg);
} }
.opener__headline { .hero > .container {
font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem); display: grid;
font-weight: 900; grid-template-columns: 1fr 1.1fr;
line-height: 1.15; gap: 3rem;
align-items: center;
}
.hero__content h1 {
font-size: 2rem;
font-weight: 800;
line-height: 1.3;
color: var(--ink-primary); color: var(--ink-primary);
margin-block-end: 1rem; margin-block-end: 0.875rem;
letter-spacing: -0.02em;
} }
.opener__sub { .hero__content p {
font-size: 1.0625rem; font-size: 1rem;
color: var(--ink-secondary); color: var(--ink-secondary);
line-height: 1.7; line-height: 1.7;
margin-block-end: 1.5rem; margin-block-end: 1.5rem;
max-width: 50ch; max-width: 44ch;
}
@media (max-width: 600px) {
.opener {
padding-block: calc(var(--nav-height) + 2.5rem) 2rem;
}
.opener__headline {
font-size: 1.75rem;
}
} }
.hero__actions {
/* --- Bento: asymmetric screenshot mosaic ------------------------- */ display: flex;
gap: 0.75rem;
.bento { flex-wrap: wrap;
padding-block: 0 4rem;
}
.bento__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 180px;
gap: 8px;
} }
.bento__item { .hero__image {
position: relative;
margin: 0;
border-radius: 10px; border-radius: 10px;
overflow: hidden; overflow: hidden;
background: var(--bg-muted); border: 1px solid var(--border-subtle);
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
} }
.bento__item img { .hero__image img {
width: 100%; width: 100%;
height: 100%; height: auto;
object-fit: cover;
display: block; display: block;
transition: transform 300ms ease;
}
.bento__item:hover img {
transform: scale(1.03);
}
.bento__item--wide {
grid-column: span 2;
}
.bento__item--tall {
grid-row: span 2;
}
.bento__label {
position: absolute;
bottom: 0;
inset-inline: 0;
padding: 0.5rem 0.75rem;
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
color: #fff;
font-size: 0.75rem;
font-weight: 600;
} }
@media (max-width: 768px) { @media (max-width: 768px) {
.bento__grid { .hero > .container {
grid-template-columns: repeat(2, 1fr);
grid-auto-rows: 140px;
}
}
@media (max-width: 480px) {
.bento__grid {
grid-template-columns: 1fr; grid-template-columns: 1fr;
grid-auto-rows: 160px; gap: 2rem;
} }
.bento__item--wide, .hero__content h1 {
.bento__item--tall { font-size: 1.625rem;
grid-column: span 1; }
grid-row: span 1; .hero__image {
max-width: 500px;
} }
} }
/* --- Flow: numbered steps, left-aligned, staggered --------------- */ /* --- Features ---------------------------------------------------- */
.flow { .features {
padding-block: 4rem; padding-block: 3.5rem;
background: var(--bg-surface); background: var(--bg-muted);
border-top: 1px solid var(--border-subtle);
border-bottom: 1px solid var(--border-subtle);
} }
.flow__heading { .features h2 {
font-size: 1.375rem; font-size: 1.5rem;
font-weight: 800; font-weight: 800;
color: var(--ink-primary); color: var(--ink-primary);
margin-block-end: 2rem; margin-block-end: 2rem;
} }
.flow__steps { .features__grid {
display: grid; display: grid;
grid-template-columns: 1fr 1fr; grid-template-columns: repeat(3, 1fr);
gap: 1.5rem 3rem; gap: 1.25rem;
} }
.flow__step { .feature {
display: flex; padding: 1.25rem;
gap: 1rem; background: var(--bg-surface);
align-items: flex-start; border: 1px solid var(--border-subtle);
border-radius: 10px;
transition: box-shadow 200ms ease, border-color 200ms ease;
} }
.flow__num { .feature:hover {
flex-shrink: 0; border-color: var(--color-accent);
width: 2rem; box-shadow: 0 2px 12px rgba(8, 145, 178, 0.08);
height: 2rem; }
border-radius: 50%;
background: var(--color-primary); .feature__icon {
color: #fff; width: 2.25rem;
font-size: 0.8125rem; height: 2.25rem;
font-weight: 800; background: var(--color-accent-ghost);
border-radius: 8px;
display: grid; display: grid;
place-items: center; place-items: center;
margin-block-end: 0.875rem;
color: var(--color-accent);
} }
.flow__step strong { .feature h3 {
display: block;
font-size: 0.9375rem; font-size: 0.9375rem;
font-weight: 700; font-weight: 700;
color: var(--ink-primary); color: var(--ink-primary);
margin-block-end: 0.25rem; margin-block-end: 0.375rem;
} }
.flow__step p { .feature p {
font-size: 0.8125rem; font-size: 0.8125rem;
color: var(--ink-secondary); color: var(--ink-secondary);
line-height: 1.6; line-height: 1.6;
max-width: none; max-width: none;
} }
@media (max-width: 700px) { @media (max-width: 900px) {
.flow__steps { .features__grid { grid-template-columns: repeat(2, 1fr); }
grid-template-columns: 1fr;
gap: 1.25rem;
}
}
/* --- Ticker: scrolling module names ------------------------------ */
.ticker-section {
padding-block: 2rem;
overflow: hidden;
background: var(--color-primary);
}
.ticker {
width: 100%;
overflow: hidden;
}
.ticker__track {
display: flex;
gap: 2.5rem;
white-space: nowrap;
animation: ticker-scroll 25s linear infinite;
width: max-content;
}
.ticker__track span {
font-size: 0.9375rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.85);
letter-spacing: 0.01em;
}
@keyframes ticker-scroll {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
} }
@media (max-width: 520px) {
@media (prefers-reduced-motion: reduce) { .features__grid { grid-template-columns: 1fr; }
.ticker__track {
animation: none;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
} }
/* --- Statement: full-width quote --------------------------------- */ /* --- Showcase ---------------------------------------------------- */
.statement { .showcase {
padding-block: 4rem; padding-block: 3.5rem;
} }
.statement__quote { .showcase h2 {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.625rem); font-size: 1.5rem;
font-weight: 700; font-weight: 800;
line-height: 1.6;
color: var(--ink-primary); color: var(--ink-primary);
max-width: 600px; margin-block-end: 1.5rem;
font-style: normal;
border-inline-start: 3px solid var(--color-accent);
padding-inline-start: 1.25rem;
}
/* --- More screenshots: simple 3-col, small ----------------------- */
.more-screens {
padding-block: 0 4rem;
} }
.more-screens__row { .showcase__grid {
display: grid; display: grid;
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(2, 1fr);
gap: 0.75rem; gap: 1rem;
} }
.more-screens__row figure { .showcase__grid figure {
margin: 0; margin: 0;
border-radius: 8px; border-radius: 8px;
overflow: hidden; overflow: hidden;
border: 1px solid var(--border-subtle); border: 1px solid var(--border-subtle);
background: var(--bg-surface);
transition: box-shadow 200ms ease;
} }
.more-screens__row img { .showcase__grid figure:hover {
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.showcase__grid img {
width: 100%; width: 100%;
height: auto; height: auto;
display: block; display: block;
} }
.showcase__grid figcaption {
padding: 0.5rem 0.75rem;
font-size: 0.8125rem;
font-weight: 600;
color: var(--ink-secondary);
border-top: 1px solid var(--border-subtle);
}
@media (max-width: 600px) { @media (max-width: 600px) {
.more-screens__row { .showcase__grid { grid-template-columns: 1fr; }
grid-template-columns: 1fr;
}
} }
/* --- Final CTA --------------------------------------------------- */ /* --- CTA --------------------------------------------------------- */
.final-cta { .cta {
padding-block: 3.5rem; padding-block: 3.5rem;
background: var(--bg-dark); background: var(--color-primary);
text-align: center;
} }
.final-cta__inner { .cta h2 {
text-align: center; font-size: 1.5rem;
font-weight: 800;
color: #fff;
margin-block-end: 0.5rem;
} }
.final-cta h2 { .cta > .container > p {
font-size: 1.375rem; font-size: 0.9375rem;
font-weight: 700; color: rgba(255,255,255,0.75);
color: var(--ink-on-dark);
margin-block-end: 1.5rem; margin-block-end: 1.5rem;
max-width: none;
} }
.final-cta__actions { .cta__actions {
display: flex; display: flex;
justify-content: center; justify-content: center;
gap: 0.75rem; gap: 0.75rem;
flex-wrap: wrap; flex-wrap: wrap;
} }
/* Override primary button to white on dark CTA */
.cta .btn--primary {
background: #fff;
color: var(--color-primary);
border-color: #fff;
box-shadow: none;
}
.cta .btn--primary:hover {
background: var(--bg-muted);
color: var(--color-primary);
}
/* --- Site Footer: minimal bar ------------------------------------ */
.site-footer { /* --- Footer ------------------------------------------------------ */
padding-block: 1.25rem;
border-top: 1px solid var(--border-subtle); .footer {
padding-block: 2.5rem 1.5rem;
background: var(--bg-dark);
color: var(--ink-on-dark);
} }
.site-footer__inner { .footer__grid {
display: flex; display: grid;
align-items: center; grid-template-columns: 2fr 1fr 1fr;
gap: 2rem; gap: 2rem;
flex-wrap: wrap; margin-block-end: 2rem;
} }
.site-footer__logo { .footer__brand p {
font-size: 0.9375rem; font-size: 0.8125rem;
font-weight: 800; color: var(--ink-on-dark-muted);
color: var(--ink-primary); margin-block-start: 0.75rem;
text-decoration: none; max-width: 30ch;
line-height: 1.6;
} }
.site-footer__nav { .footer__grid h4 {
display: flex; font-size: 0.75rem;
gap: 1.25rem; font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--ink-on-dark);
margin-block-end: 0.75rem;
} }
.site-footer__nav a { .footer__grid a {
display: block;
font-size: 0.8125rem; font-size: 0.8125rem;
color: var(--ink-secondary); color: var(--ink-on-dark-muted);
text-decoration: none; text-decoration: none;
padding-block: 0.25rem;
transition: color 150ms ease;
} }
.site-footer__nav a:hover { .footer__grid a:hover {
color: var(--color-accent); color: #fff;
} }
.site-footer__copy { .footer__bottom {
margin-inline-start: auto; padding-block-start: 1.5rem;
border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__bottom span {
font-size: 0.75rem; font-size: 0.75rem;
color: var(--ink-muted); color: var(--ink-on-dark-muted);
} }
@media (max-width: 600px) { @media (max-width: 600px) {
.site-footer__inner { .footer__grid {
justify-content: center; grid-template-columns: 1fr;
text-align: center; gap: 1.5rem;
}
.site-footer__copy {
margin-inline-start: 0;
width: 100%;
} }
} }
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>El-Captain — الأكاديمية كلها في إيدك</title> <title>El-Captain — نظام إدارة الأكاديميات الرياضية</title>
<meta name="description" content="نظام إدارة أكاديميات رياضية — تسجيل، فواتير، حضور، جداول، مخازن. مبني للسوق المصري."> <meta name="description" content="نظام متكامل لإدارة الأكاديميات الرياضية — مشتركين، مالية، حضور، جداول، ومخازن.">
<link rel="stylesheet" href="css/tokens.css"> <link rel="stylesheet" href="css/tokens.css">
<link rel="stylesheet" href="css/base.css"> <link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/components.css"> <link rel="stylesheet" href="css/components.css">
...@@ -33,153 +33,109 @@ ...@@ -33,153 +33,109 @@
<main> <main>
<!-- Opener: no image, just a statement --> <!-- Hero -->
<section class="opener"> <section class="hero">
<div class="container"> <div class="container">
<h1 class="opener__headline">سيب الكشاكيل.<br>الأكاديمية كلها أونلاين.</h1> <div class="hero__content">
<p class="opener__sub">من تسجيل المشترك لحد قفل الخزنة آخر اليوم — كل حاجة في مكان واحد.</p> <h1>نظام إدارة متكامل للأكاديميات الرياضية</h1>
<a href="contact.html" class="btn btn--primary btn--lg">جرّب 10 أيام ببلاش</a> <p>سجّل المشتركين، تابع الحضور، أصدر الفواتير، ونظّم الجداول — كل ده من مكان واحد. مبني بالعربي للسوق المصري.</p>
</div> <div class="hero__actions">
</section> <a href="contact.html" class="btn btn--primary">جرّب مجاناً 10 أيام</a>
<a href="features.html" class="btn btn--secondary">اعرف أكتر</a>
<!-- Bento: asymmetric screenshot grid --> </div>
<section class="bento"> </div>
<div class="container"> <div class="hero__image">
<div class="bento__grid"> <img src="screenshots/app/dashboard.png" alt="لوحة التحكم الرئيسية" width="640" height="400">
<figure class="bento__item bento__item--wide">
<img src="screenshots/app/reception-desk.png" alt="مكتب الاستقبال" loading="lazy">
<span class="bento__label">مكتب الاستقبال</span>
</figure>
<figure class="bento__item bento__item--tall">
<img src="screenshots/app/participants-list.png" alt="المشتركين" loading="lazy">
<span class="bento__label">المشتركين</span>
</figure>
<figure class="bento__item">
<img src="screenshots/app/financial-overview.png" alt="المالية" loading="lazy">
<span class="bento__label">المالية</span>
</figure>
<figure class="bento__item">
<img src="screenshots/app/weekly-schedule.png" alt="الجدول" loading="lazy">
<span class="bento__label">الجدول الأسبوعي</span>
</figure>
<figure class="bento__item bento__item--wide">
<img src="screenshots/app/attendance.png" alt="الحضور" loading="lazy">
<span class="bento__label">الحضور والغياب</span>
</figure>
</div> </div>
</div> </div>
</section> </section>
<!-- Flow: the user journey, not a feature list --> <!-- Features -->
<section class="flow"> <section class="features">
<div class="container"> <div class="container">
<h2 class="flow__heading">يومك في الأكاديمية — من أوله لآخره</h2> <h2>كل اللي أكاديميتك محتاجاه</h2>
<div class="flow__steps"> <div class="features__grid">
<div class="flow__step"> <div class="feature">
<span class="flow__num">1</span> <div class="feature__icon">
<div> <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
<strong>المشترك يسجّل</strong>
<p>بياناته، ولي أمره، نشاطه، مجموعته — كلها في شاشة واحدة.</p>
</div> </div>
<h3>إدارة المشتركين</h3>
<p>ملفات كاملة، أولياء أمور، تصنيفات، وسجل نشاط لكل مشترك.</p>
</div> </div>
<div class="flow__step"> <div class="feature">
<span class="flow__num">2</span> <div class="feature__icon">
<div> <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
<strong>الفاتورة تتعمل تلقائي</strong>
<p>بناءً على البرنامج والخصومات. أقساط؟ محفظة؟ كاش؟ كله موجود.</p>
</div> </div>
<h3>المالية والفواتير</h3>
<p>فواتير تلقائية، أقساط، محافظ إلكترونية، وقيد مزدوج.</p>
</div> </div>
<div class="flow__step"> <div class="feature">
<span class="flow__num">3</span> <div class="feature__icon">
<div> <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 11 12 14 22 4"/><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"/></svg>
<strong>المدرب يسجّل الحضور</strong>
<p>من الموبايل. حاضر، متأخر، غايب. والنظام بيعمل الباقي.</p>
</div> </div>
<h3>الحضور والغياب</h3>
<p>تسجيل من الموبايل، حساب التأخير، وتنبيهات للغياب المتكرر.</p>
</div> </div>
<div class="flow__step"> <div class="feature">
<span class="flow__num">4</span> <div class="feature__icon">
<div> <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>
<strong>آخر اليوم — تقفل الوردية</strong>
<p>الخزنة متطابقة؟ تمام. فيه فرق؟ النظام بيقولك فين.</p>
</div> </div>
<h3>الجداول والبرامج</h3>
<p>جدول أسبوعي، مجموعات، حصص تلقائية، وتعيين المدربين.</p>
</div>
<div class="feature">
<div class="feature__icon">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/></svg>
</div>
<h3>المخازن</h3>
<p>تتبع المنتجات، حركات الإدخال والصرف، جرد، وأوامر شراء.</p>
</div>
<div class="feature">
<div class="feature__icon">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="7" width="20" height="14" rx="2" ry="2"/><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/></svg>
</div>
<h3>الموارد البشرية</h3>
<p>بيانات الموظفين، المدربين، حساب المرتبات، والتقييمات.</p>
</div> </div>
</div> </div>
</div> </div>
</section> </section>
<!-- Modules: marquee ticker --> <!-- Screenshot showcase -->
<section class="ticker-section"> <section class="showcase">
<div class="ticker">
<div class="ticker__track">
<span>المشتركين</span>
<span>البرامج</span>
<span>المجموعات</span>
<span>الفواتير</span>
<span>الحضور</span>
<span>المخازن</span>
<span>المرتبات</span>
<span>الجداول</span>
<span>المحافظ</span>
<span>التقارير</span>
<span>الأقساط</span>
<span>المنشآت</span>
<span>الحجوزات</span>
<span>الإشعارات</span>
<!-- repeat -->
<span>المشتركين</span>
<span>البرامج</span>
<span>المجموعات</span>
<span>الفواتير</span>
<span>الحضور</span>
<span>المخازن</span>
<span>المرتبات</span>
<span>الجداول</span>
<span>المحافظ</span>
<span>التقارير</span>
<span>الأقساط</span>
<span>المنشآت</span>
<span>الحجوزات</span>
<span>الإشعارات</span>
</div>
</div>
</section>
<!-- Differentiator: one statement, big -->
<section class="statement">
<div class="container"> <div class="container">
<blockquote class="statement__quote"> <h2>من داخل النظام</h2>
"إحنا مش بنبيع Excel بواجهة حلوة.<br> <div class="showcase__grid">
ده نظام اتبنى من جوه أكاديمية — مش من جوه شركة software." <figure>
</blockquote> <img src="screenshots/app/reception-desk.png" alt="مكتب الاستقبال" loading="lazy">
</div> <figcaption>مكتب الاستقبال</figcaption>
</section> </figure>
<!-- Extra screenshots row -->
<section class="more-screens">
<div class="container">
<div class="more-screens__row">
<figure> <figure>
<img src="screenshots/app/groups.png" alt="المجموعات" loading="lazy"> <img src="screenshots/app/weekly-schedule.png" alt="الجدول الأسبوعي" loading="lazy">
<figcaption>الجدول الأسبوعي</figcaption>
</figure> </figure>
<figure> <figure>
<img src="screenshots/app/invoices.png" alt="الفواتير" loading="lazy"> <img src="screenshots/app/financial-overview.png" alt="النظرة المالية" loading="lazy">
<figcaption>النظرة المالية</figcaption>
</figure> </figure>
<figure> <figure>
<img src="screenshots/app/facilities.png" alt="المنشآت" loading="lazy"> <img src="screenshots/app/participants-list.png" alt="المشتركين" loading="lazy">
<figcaption>قائمة المشتركين</figcaption>
</figure> </figure>
</div> </div>
</div> </div>
</section> </section>
<!-- CTA --> <!-- CTA -->
<section class="final-cta"> <section class="cta">
<div class="container final-cta__inner"> <div class="container">
<h2>10 أيام مجاناً. بدون بطاقة. بدون التزام.</h2> <h2>ابدأ تجربتك المجانية</h2>
<div class="final-cta__actions"> <p>10 أيام كاملة. بدون بطاقة ائتمان. بدون التزام.</p>
<div class="cta__actions">
<a href="contact.html" class="btn btn--primary btn--lg">ابدأ دلوقتي</a> <a href="contact.html" class="btn btn--primary btn--lg">ابدأ دلوقتي</a>
<a href="https://wa.me/201XXXXXXXXX" class="btn btn--whatsapp" target="_blank" rel="noopener"> <a href="https://wa.me/201XXXXXXXXX" class="btn btn--whatsapp" target="_blank" rel="noopener">
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z"/></svg> <svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z"/></svg>
كلمنا على WhatsApp تواصل على WhatsApp
</a> </a>
</div> </div>
</div> </div>
...@@ -187,15 +143,30 @@ ...@@ -187,15 +143,30 @@
</main> </main>
<footer class="site-footer"> <footer class="footer">
<div class="container site-footer__inner"> <div class="container">
<a href="/" class="site-footer__logo">El-Captain</a> <div class="footer__grid">
<nav class="site-footer__nav"> <div class="footer__brand">
<a href="features.html">المزايا</a> <a href="/" class="footer__brand-logo">
<a href="pricing.html">التسعير</a> <span class="nav__logo-mark">EC</span>
<a href="contact.html">تواصل</a> <span class="nav__logo-text">El-Captain</span>
</nav> </a>
<span class="site-footer__copy">&copy; 2024</span> <p>نظام إدارة متكامل للأكاديميات الرياضية في مصر.</p>
</div>
<div>
<h4>النظام</h4>
<a href="features.html">المزايا</a>
<a href="pricing.html">التسعير</a>
</div>
<div>
<h4>تواصل</h4>
<a href="contact.html">تواصل معنا</a>
<a href="https://wa.me/201XXXXXXXXX" target="_blank" rel="noopener">WhatsApp</a>
</div>
</div>
<div class="footer__bottom">
<span>&copy; 2024 El-Captain. جميع الحقوق محفوظة.</span>
</div>
</div> </div>
</footer> </footer>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment