Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added App/app/apple-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added App/app/favicon.ico
Binary file not shown.
Binary file added App/app/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions App/app/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ main { overflow: hidden; }
.nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 110px; }
.brand, .status { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 650; }
.orb { width: 13px; height: 13px; border-radius: 99px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 30px var(--accent); }
.brandLogo { height: 28px; width: auto; display: block; filter: drop-shadow(0 8px 24px rgba(236, 27, 105, .3)); }
.brandSub { color: var(--text); font-weight: 750; letter-spacing: -.01em; }
.status { border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; background: rgba(255,255,255,.04); }
.siteNav { gap: 18px; }
.navActions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
Expand Down
6 changes: 5 additions & 1 deletion App/components/SiteNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ export default function SiteNav() {

return (
<nav className="nav siteNav">
<a href="/" className="brand"><span className="orb" /> PerkOS Knowledge</a>
<a href="/" className="brand" aria-label="PerkOS Knowledge">
{/* eslint-disable-next-line @next/next/no-img-element */}
<img src="/perkos-header.png" alt="PerkOS" width={82} height={28} className="brandLogo" />
<span className="brandSub">Knowledge</span>
</a>
<div className="navActions">
{allowed ? (
<div className="headerMenu" aria-label="Authenticated navigation">
Expand Down
Binary file added App/public/perkos-header.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading