Skip to content

Commit 304f9e0

Browse files
committed
Added auto update and added new 1.0.2 release.
1 parent 2db5021 commit 304f9e0

123 files changed

Lines changed: 11538 additions & 39 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/css/admin.css

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,4 +1274,171 @@
12741274
background: transparent !important;
12751275
line-height: 1.4;
12761276
color: var(--wbpg-text);
1277+
}
1278+
1279+
/* ========================================
1280+
About Page — Plugin Description Section
1281+
Geist Design System / WIG Compliant
1282+
======================================== */
1283+
1284+
/* Plugin Hero Card */
1285+
.wbpg-plugin-hero {
1286+
margin-bottom: 24px;
1287+
}
1288+
1289+
.wbpg-plugin-hero-card {
1290+
padding: 40px !important;
1291+
border-left: 3px solid var(--wbpg-accent) !important;
1292+
}
1293+
1294+
.wbpg-plugin-hero-content {
1295+
display: flex;
1296+
align-items: flex-start;
1297+
gap: 28px;
1298+
}
1299+
1300+
.wbpg-plugin-icon-wrap {
1301+
width: 56px;
1302+
height: 56px;
1303+
min-width: 56px;
1304+
border-radius: 12px;
1305+
background: rgba(0, 112, 243, 0.08);
1306+
display: flex;
1307+
align-items: center;
1308+
justify-content: center;
1309+
color: var(--wbpg-accent);
1310+
font-size: 24px;
1311+
}
1312+
1313+
[data-theme="dark"] .wbpg-plugin-icon-wrap {
1314+
background: rgba(0, 112, 243, 0.15);
1315+
}
1316+
1317+
.wbpg-plugin-hero-text h2 {
1318+
font-size: 22px !important;
1319+
font-weight: 700 !important;
1320+
letter-spacing: -0.02em !important;
1321+
margin-bottom: 10px !important;
1322+
}
1323+
1324+
.wbpg-plugin-tagline {
1325+
font-size: 15px;
1326+
line-height: 1.7;
1327+
color: var(--wbpg-text-muted);
1328+
margin: 0;
1329+
}
1330+
1331+
/* Capabilities Bento Grid */
1332+
.wbpg-capabilities-grid {
1333+
display: grid;
1334+
grid-template-columns: repeat(2, 1fr);
1335+
gap: 20px;
1336+
margin-bottom: 24px;
1337+
}
1338+
1339+
@media (max-width: 782px) {
1340+
.wbpg-capabilities-grid {
1341+
grid-template-columns: 1fr;
1342+
}
1343+
}
1344+
1345+
.wbpg-capability-card {
1346+
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1347+
}
1348+
1349+
.wbpg-capability-card:hover {
1350+
border-color: var(--wbpg-accent) !important;
1351+
transform: translateY(-2px);
1352+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
1353+
}
1354+
1355+
.wbpg-admin-wrap[data-theme="dark"] .wbpg-capability-card:hover {
1356+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
1357+
}
1358+
1359+
.wbpg-capability-icon {
1360+
width: 40px;
1361+
height: 40px;
1362+
border-radius: 10px;
1363+
background: rgba(0, 112, 243, 0.08);
1364+
display: flex;
1365+
align-items: center;
1366+
justify-content: center;
1367+
color: var(--wbpg-accent);
1368+
font-size: 16px;
1369+
margin-bottom: 16px;
1370+
}
1371+
1372+
[data-theme="dark"] .wbpg-capability-icon {
1373+
background: rgba(0, 112, 243, 0.15);
1374+
}
1375+
1376+
.wbpg-capability-card h3 {
1377+
font-size: 14px;
1378+
font-weight: 600;
1379+
margin: 0 0 8px 0;
1380+
color: var(--wbpg-text);
1381+
}
1382+
1383+
.wbpg-capability-card p {
1384+
font-size: 13px;
1385+
line-height: 1.6;
1386+
color: var(--wbpg-text-muted);
1387+
margin: 0;
1388+
}
1389+
1390+
/* Technical Highlights Strip */
1391+
.wbpg-tech-strip {
1392+
display: flex;
1393+
flex-wrap: wrap;
1394+
gap: 12px;
1395+
margin-bottom: 32px;
1396+
padding: 20px 0;
1397+
border-top: 1px solid var(--wbpg-border);
1398+
border-bottom: 1px solid var(--wbpg-border);
1399+
}
1400+
1401+
.wbpg-tech-item {
1402+
display: inline-flex;
1403+
align-items: center;
1404+
gap: 8px;
1405+
padding: 6px 14px;
1406+
font-size: 12px;
1407+
font-weight: 500;
1408+
color: var(--wbpg-text-muted);
1409+
background: var(--wbpg-bg-page);
1410+
border: 1px solid var(--wbpg-border);
1411+
border-radius: 20px;
1412+
transition: all 0.2s ease;
1413+
white-space: nowrap;
1414+
}
1415+
1416+
.wbpg-tech-item i {
1417+
font-size: 12px;
1418+
color: var(--wbpg-accent);
1419+
}
1420+
1421+
.wbpg-tech-item:hover {
1422+
border-color: var(--wbpg-accent);
1423+
color: var(--wbpg-text);
1424+
}
1425+
1426+
@media (max-width: 782px) {
1427+
.wbpg-plugin-hero-content {
1428+
flex-direction: column;
1429+
gap: 16px;
1430+
}
1431+
1432+
.wbpg-plugin-hero-card {
1433+
padding: 24px !important;
1434+
}
1435+
1436+
.wbpg-tech-strip {
1437+
gap: 8px;
1438+
}
1439+
1440+
.wbpg-tech-item {
1441+
font-size: 11px;
1442+
padding: 5px 10px;
1443+
}
12771444
}

docs/index.html

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</script>
3838

3939
<!-- Icons & Typography -->
40-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
40+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
4141
<link rel="stylesheet" href="style.css">
4242
<link rel="icon"
4343
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🚀</text></svg>">
@@ -55,8 +55,8 @@
5555
<a href="#about" class="nav-link">About</a>
5656
<a href="#features" class="nav-link">Features</a>
5757
<a href="#faq" class="nav-link">FAQ</a>
58-
<a href="https://github.com/boopathirbk/wp-bulk-pages-generator" class="nav-link"
59-
target="_blank">GitHub</a>
58+
<a href="https://github.com/boopathirbk/wp-bulk-pages-generator" class="nav-link" target="_blank"
59+
rel="noopener noreferrer">GitHub</a>
6060
<div class="theme-toggle-wrap">
6161
<span class="theme-text" id="theme-text">Light</span>
6262
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle Theme">
@@ -81,7 +81,7 @@ <h1 data-reveal>Content Entry, <br> Beautifully Automated.</h1>
8181
our engine does the heavy lifting so you don't have to.</p>
8282
<div class="cta-group" data-reveal>
8383
<a href="https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/boopathirbk/wp-bulk-pages-generator/main/blueprints/demo.json"
84-
class="btn btn-black" target="_blank">
84+
class="btn btn-black" target="_blank" rel="noopener noreferrer">
8585
<i class="fab fa-wordpress" aria-hidden="true"></i> Launch Live Demo
8686
</a>
8787
<a href="https://github.com/boopathirbk/wp-bulk-pages-generator/releases/latest/download/wp-bulk-pages-generator.zip"
@@ -143,6 +143,11 @@ <h3>Zero-Lag Injection</h3>
143143
<p>Our engine uses DocumentFragments and virtual DOM techniques to ensure that even if you're
144144
injecting 100 rows, your browser stays fast and responsive.</p>
145145
</div>
146+
<div class="bento-card span-4" data-reveal>
147+
<i class="fas fa-cloud-arrow-down" aria-hidden="true"></i>
148+
<h3>Native Auto-Updates</h3>
149+
<p>Update the plugin directly from your WordPress dashboard via one-click GitHub releases.</p>
150+
</div>
146151
<div class="bento-card span-4" data-reveal>
147152
<i class="fas fa-lock" aria-hidden="true"></i>
148153
<h3>Accident-Proof</h3>
@@ -322,7 +327,7 @@ <h2>Frequently Asked Questions</h2>
322327
<button class="faq-btn" aria-expanded="false" aria-controls="faq-ans-15">Can I set multiple
323328
categories? <i class="fas fa-plus" aria-hidden="true"></i></button>
324329
<div class="faq-answer" id="faq-ans-15" role="region">
325-
<p>Currently, v1.0.0 supports a primary category selection per batch. Advanced taxonomy mapping
330+
<p>Currently, v1.0.2 supports a primary category selection per batch. Advanced taxonomy mapping
326331
is a future roadmap item.</p>
327332
</div>
328333
</div>
@@ -391,8 +396,8 @@ <h3>Boopathi R</h3>
391396
<div class="cta-group author-ctas">
392397
<a href="mailto:genius@duck.com" class="btn btn-black"><i class="fas fa-envelope"
393398
aria-hidden="true"></i> Hire for Projects</a>
394-
<a href="https://linkedin.com/in/boopathirb" class="btn btn-white" target="_blank"><i
395-
class="fab fa-linkedin" aria-hidden="true"></i> Connect</a>
399+
<a href="https://linkedin.com/in/boopathirb" class="btn btn-white" target="_blank"
400+
rel="noopener noreferrer"><i class="fab fa-linkedin" aria-hidden="true"></i> Connect</a>
396401
</div>
397402
</div>
398403
</div>
@@ -417,7 +422,8 @@ <h4>Direct Links</h4>
417422
href="https://github.com/boopathirbk/wp-bulk-pages-generator/releases/latest/download/wp-bulk-pages-generator.zip"><i
418423
class="fas fa-download" aria-hidden="true"></i> Download ZIP</a></li>
419424
<li><a href="https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/boopathirbk/wp-bulk-pages-generator/main/blueprints/demo.json"
420-
target="_blank"><i class="fab fa-wordpress" aria-hidden="true"></i> Playground Demo</a>
425+
target="_blank" rel="noopener noreferrer"><i class="fab fa-wordpress"
426+
aria-hidden="true"></i> Playground Demo</a>
421427
</li>
422428
<li><a href="https://github.com/boopathirbk/wp-bulk-pages-generator"><i class="fab fa-github"
423429
aria-hidden="true"></i> Source Code</a></li>
@@ -428,8 +434,8 @@ <h4>Community</h4>
428434
<ul class="footer-links">
429435
<li><a href="https://github.com/boopathirbk/wp-bulk-pages-generator/issues"><i
430436
class="fas fa-circle-exclamation" aria-hidden="true"></i> Support & Issues</a></li>
431-
<li><a href="https://paypal.me/boopathirbk" target="_blank"><i class="fab fa-paypal"
432-
aria-hidden="true"></i> Donate
437+
<li><a href="https://paypal.me/boopathirbk" target="_blank" rel="noopener noreferrer"><i
438+
class="fab fa-paypal" aria-hidden="true"></i> Donate
433439
& Support</a></li>
434440
<li><a href="https://github.com/boopathirbk/wp-bulk-pages-generator/stargazers"><i
435441
class="fas fa-star" aria-hidden="true"></i> Star Repository</a></li>
@@ -441,10 +447,10 @@ <h4>Architect</h4>
441447
<li><a href="mailto:genius@duck.com"><i class="fas fa-envelope-open-text"
442448
aria-hidden="true"></i> Email
443449
Boopathi</a></li>
444-
<li><a href="https://linkedin.com/in/boopathirb" target="_blank"><i class="fab fa-linkedin-in"
445-
aria-hidden="true"></i> LinkedIn</a></li>
446-
<li><a href="https://github.com/boopathirbk" target="_blank"><i class="fab fa-github-alt"
447-
aria-hidden="true"></i>
450+
<li><a href="https://linkedin.com/in/boopathirb" target="_blank" rel="noopener noreferrer"><i
451+
class="fab fa-linkedin-in" aria-hidden="true"></i> LinkedIn</a></li>
452+
<li><a href="https://github.com/boopathirbk" target="_blank" rel="noopener noreferrer"><i
453+
class="fab fa-github-alt" aria-hidden="true"></i>
448454
Author Profile</a></li>
449455
</ul>
450456
</div>

0 commit comments

Comments
 (0)