Skip to content

Commit cfe66c9

Browse files
committed
feat(frontend): adjust logo styling and footer icons
1 parent 0725fbe commit cfe66c9

2 files changed

Lines changed: 34 additions & 21 deletions

File tree

apps/frontend/src/app/globals.css

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ body {
9191
height: 42px;
9292
display: grid;
9393
place-items: center;
94-
border-radius: 14px;
94+
border-radius: 999px;
9595
font-weight: 700;
9696
color: var(--ios-ink);
9797
background: linear-gradient(135deg, var(--ios-purple), var(--ios-teal));
@@ -569,23 +569,6 @@ body {
569569
font-size: 16px;
570570
}
571571

572-
.footer-brand {
573-
width: 28px;
574-
height: 28px;
575-
display: grid;
576-
place-items: center;
577-
border-radius: 9px;
578-
background: linear-gradient(135deg, var(--ios-purple), var(--ios-teal));
579-
box-shadow: var(--ios-glow);
580-
}
581-
582-
.footer-brand img {
583-
width: 70%;
584-
height: 70%;
585-
object-fit: contain;
586-
filter: drop-shadow(0 4px 8px rgba(20, 30, 60, 0.2));
587-
}
588-
589572
.footer-subtitle {
590573
font-size: 13px;
591574
color: rgba(11, 11, 22, 0.5);
@@ -610,6 +593,9 @@ body {
610593
background: rgba(255, 255, 255, 0.9);
611594
box-shadow: 0 8px 20px rgba(32, 36, 70, 0.12);
612595
transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
596+
display: inline-flex;
597+
align-items: center;
598+
gap: 8px;
613599
}
614600

615601
.footer-link:hover {
@@ -618,6 +604,27 @@ body {
618604
box-shadow: 0 14px 30px rgba(32, 36, 70, 0.18);
619605
}
620606

607+
.footer-icon {
608+
width: 26px;
609+
height: 26px;
610+
border-radius: 999px;
611+
display: grid;
612+
place-items: center;
613+
font-size: 10px;
614+
font-weight: 700;
615+
letter-spacing: 0.4px;
616+
color: white;
617+
background: #111827;
618+
}
619+
620+
.footer-link:nth-of-type(2) .footer-icon {
621+
background: #0078d4;
622+
}
623+
624+
.footer-link:nth-of-type(3) .footer-icon {
625+
background: #f04d2f;
626+
}
627+
621628
.step {
622629
display: flex;
623630
gap: 12px;

apps/frontend/src/app/page.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -467,9 +467,6 @@ export default function Home() {
467467
<footer className="app-footer">
468468
<div>
469469
<div className="footer-label">
470-
<span className="footer-brand" aria-hidden="true">
471-
<img src="/logo/verifyOS_web_128x.png" alt="" />
472-
</span>
473470
verifyOS
474471
</div>
475472
<div className="footer-subtitle">Resources &amp; downloads</div>
@@ -481,6 +478,9 @@ export default function Home() {
481478
rel="noreferrer"
482479
className="footer-link"
483480
>
481+
<span className="footer-icon" aria-hidden="true">
482+
GH
483+
</span>
484484
GitHub Repo
485485
</a>
486486
<a
@@ -489,6 +489,9 @@ export default function Home() {
489489
rel="noreferrer"
490490
className="footer-link"
491491
>
492+
<span className="footer-icon" aria-hidden="true">
493+
VS
494+
</span>
492495
VS Code Extension
493496
</a>
494497
<a
@@ -497,6 +500,9 @@ export default function Home() {
497500
rel="noreferrer"
498501
className="footer-link"
499502
>
503+
<span className="footer-icon" aria-hidden="true">
504+
CR
505+
</span>
500506
crates.io
501507
</a>
502508
</nav>

0 commit comments

Comments
 (0)