0 Votes

Changes for page Home

Last modified by Alex Cotiugă on 2026/01/13 13:12

From version 5.10
edited by Alex Cotiugă
on 2025/11/12 15:27
Change comment: There is no comment for this version
To version 5.12
edited by Alex Cotiugă
on 2025/11/12 15:36
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -3,7 +3,6 @@
3 3  Agnease helps organizations maintain, upgrade, and extend their XWiki environments with clarity and precision. Focusing on stability, performance, and long-term support we ensure your business knowledge and collaboration tools remain dependable, secure, and adaptable to growth.*#
4 4  {{html clean="false"}}
5 5  <main class="agnease-landing">
6 -
7 7   <!-- ================= HERO ================= -->
8 8   <section class="hero" aria-labelledby="hero-title">
9 9   <div class="container hero-top">
... ... @@ -18,19 +18,48 @@
18 18   Agnease keeps XWiki stable, secure, and ready to grow.
19 19   </p>
20 20   <div class="hero-cta">
21 - <a class="btn btn-primary" href="#contact">Request a proposal</a>
20 + <a class="btn btn-primary" href="#contact" aria-label="Schedule a call with Agnease">Schedule a call</a>
22 22   <a class="btn btn-ghost" href="#services">View services</a>
23 23   </div>
24 - </div>
25 -
26 - <aside class="hero-card" aria-labelledby="glance-title">
27 - <h3 id="glance-title">At a glance</h3>
28 - <ul>
23 + <ul class="benefits">
29 29   <li>Low-downtime LTS upgrades</li>
30 30   <li>Support plans with SLAs</li>
31 - <li>SSO/OIDC, Stripe, REST integrations</li>
32 - <li>Audits, recovery, performance tuning</li>
26 + <li>SSO/OIDC, Stripe, REST</li>
27 + <li>Audits &amp; recovery</li>
33 33   </ul>
29 + </div>
30 +
31 + <!-- Assurance widgets (replaces the old “At a glance”) -->
32 + <aside class="widgets" aria-label="Assurances">
33 + <article class="widget">
34 + <div class="icon" aria-hidden="true">
35 + <svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M12 3l7 3v5c0 5-3.5 9-7 10-3.5-1-7-5-7-10V6l7-3z" stroke="#2D3A34" stroke-width="1.6" fill="none"/></svg>
36 + </div>
37 + <div>
38 + <h3>Low risk delivery</h3>
39 + <p>Rehearsed upgrades with backups and clear rollback paths.</p>
40 + </div>
41 + </article>
42 +
43 + <article class="widget">
44 + <div class="icon" aria-hidden="true">
45 + <svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4 17h4l3-7 3 7h6" stroke="#2D3A34" stroke-width="1.6"/></svg>
46 + </div>
47 + <div>
48 + <h3>Transparent plan</h3>
49 + <p>Scope, windows, and checkpoints agreed before changes.</p>
50 + </div>
51 + </article>
52 +
53 + <article class="widget">
54 + <div class="icon" aria-hidden="true">
55 + <svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M3 12l4-4 5 5 5-5 4 4-9 9-9-9z" stroke="#2D3A34" stroke-width="1.6" fill="none"/></svg>
56 + </div>
57 + <div>
58 + <h3>Ongoing support</h3>
59 + <p>Retainers with response-time guarantees and health checks.</p>
60 + </div>
61 + </article>
34 34   </aside>
35 35   </div>
36 36   </section>
XWiki.StyleSheetExtension[0]
Code
... ... @@ -102,3 +102,40 @@
102 102   background:#fff;border:1px solid var(--line);border-radius:var(--radius);
103 103   padding:20px;box-shadow:var(--shadow);display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px
104 104   }
105 +/* Keep primary CTA text white on hover */
106 +.btn-primary,
107 +.btn-primary:hover,
108 +.btn-primary:focus {
109 + color: #fff;
110 +}
111 +
112 +/* Benefits row under CTAs for quick scannability */
113 +.benefits {
114 + display:flex;flex-wrap:wrap;gap:.5rem 1rem;
115 + margin:10px 0 0; padding:0; list-style:none; color:#5B6B64;
116 +}
117 +
118 +/* Assurance widgets layout (right column) */
119 +.widgets {
120 + display:grid; gap:12px;
121 + grid-template-columns:1fr; align-content:start;
122 +}
123 +.widget {
124 + display:grid; grid-template-columns:auto 1fr; gap:10px;
125 + background:#fff; border:1px solid #E4ECE9; border-radius:16px;
126 + padding:14px; box-shadow:0 6px 20px rgba(0,0,0,.06);
127 +}
128 +.widget h3 { margin:.1rem 0 .15rem; font-size:1rem }
129 +.widget p { margin:0; color:#5B6B64 }
130 +.widget .icon {
131 + width:38px;height:38px;border-radius:10px;
132 + background:#F7F9F8;border:1px solid #E4ECE9;
133 + display:grid;place-items:center;
134 +}
135 +
136 +/* Ensure the hero two-column balance feels filled */
137 +.hero-top { display:grid; gap:22px; grid-template-columns:1fr }
138 +@media (min-width:860px){
139 + .hero-top { grid-template-columns:1.15fr .85fr }
140 +}
141 +