Skip to content

Commit f93593d

Browse files
committed
feat(frontend): add project links
1 parent 058a29e commit f93593d

2 files changed

Lines changed: 53 additions & 0 deletions

File tree

apps/frontend/src/app/globals.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,32 @@ body {
533533
width: 100%;
534534
}
535535

536+
.links-row {
537+
display: grid;
538+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
539+
gap: 12px;
540+
}
541+
542+
.link-card {
543+
display: inline-flex;
544+
align-items: center;
545+
justify-content: center;
546+
padding: 14px 16px;
547+
border-radius: 14px;
548+
border: 1px solid var(--ios-outline);
549+
background: rgba(255, 255, 255, 0.7);
550+
text-decoration: none;
551+
color: var(--ios-ink);
552+
font-weight: 600;
553+
box-shadow: var(--ios-shadow);
554+
transition: transform 0.2s ease, box-shadow 0.2s ease;
555+
}
556+
557+
.link-card:hover {
558+
transform: translateY(-2px);
559+
box-shadow: 0 18px 40px rgba(24, 28, 52, 0.18);
560+
}
561+
536562
.step {
537563
display: flex;
538564
gap: 12px;

apps/frontend/src/app/page.tsx

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,33 @@ export default function Home() {
290290
</div>
291291
</section>
292292

293+
<section className="links-row">
294+
<a
295+
href="https://github.com/0xBoji/verifyOS"
296+
target="_blank"
297+
rel="noreferrer"
298+
className="link-card"
299+
>
300+
GitHub Repo
301+
</a>
302+
<a
303+
href="https://marketplace.visualstudio.com/items?itemName=0xBoji.verifyos-vscode"
304+
target="_blank"
305+
rel="noreferrer"
306+
className="link-card"
307+
>
308+
VS Code Extension
309+
</a>
310+
<a
311+
href="https://crates.io/crates/verifyos-cli"
312+
target="_blank"
313+
rel="noreferrer"
314+
className="link-card"
315+
>
316+
crates.io
317+
</a>
318+
</section>
319+
293320
<section className="scan-panel" id="quick-scan">
294321
<div className="hero-card">
295322
<div className="card-header">

0 commit comments

Comments
 (0)