Skip to content

Commit 2eafe43

Browse files
committed
add xina
Signed-off-by: 82Flex <82flex@gmail.com>
1 parent aaf0ddb commit 2eafe43

5 files changed

Lines changed: 29 additions & 9 deletions

File tree

15.2 KB
Loading
15.2 KB
Loading

src/pages/index.module.css

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -320,27 +320,32 @@
320320

321321
.compatList {
322322
display: grid;
323-
grid-template-columns: repeat(2, 160px);
323+
grid-template-columns: repeat(2, 160px); /* 2+2+2 on small */
324324
gap: 2rem;
325325
margin: 2rem auto;
326-
max-width: 1000px;
327-
justify-content: center;
328-
/* center the grid within container */
329-
justify-items: center;
330-
/* center items in each cell */
326+
max-width: 1120px; /* allow 6 columns (6*160 + gaps) */
327+
justify-content: center; /* center the grid within container */
328+
justify-items: center; /* center items in each cell */
331329
}
332330

333-
/* Medium screens: 3 columns => rows become 3+2 for 5 items */
331+
/* ≥640px: 3 columns => 3+3 */
334332
@media (min-width: 640px) {
335333
.compatList {
336334
grid-template-columns: repeat(3, 160px);
337335
}
338336
}
339337

340-
/* Large screens: 5 columns => 5 items on one row */
338+
/* ≥960px: 4 columns => 4+2 */
341339
@media (min-width: 960px) {
342340
.compatList {
343-
grid-template-columns: repeat(5, 160px);
341+
grid-template-columns: repeat(4, 160px);
342+
}
343+
}
344+
345+
/* ≥1200px: 6 columns => 6 in 1 row */
346+
@media (min-width: 1200px) {
347+
.compatList {
348+
grid-template-columns: repeat(6, 160px);
344349
}
345350
}
346351

src/pages/index.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,21 @@ function HomepageCompatibility() {
492492
</div>
493493
<span>Taurine</span>
494494
</a>
495+
<a
496+
href="https://zhuxinlang.github.io"
497+
target="_blank"
498+
rel="noopener noreferrer"
499+
className={styles.jailbreakItem}
500+
>
501+
<div className={styles.jailbreakIconWrapper}>
502+
<img
503+
src={useBaseUrl("img/xinaa15.png")}
504+
alt="XinaA15"
505+
className={styles.jailbreakIcon}
506+
/>
507+
</div>
508+
<span>XinaA15</span>
509+
</a>
495510
<a
496511
href="https://palera.in"
497512
target="_blank"

static/img/xinaa15.png

11.4 KB
Loading

0 commit comments

Comments
 (0)