Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function Navbar() {
onClick={() => navigate('/')}
style={{ fontWeight: 800, fontSize: 15, letterSpacing: '.1em', color: 'var(--accent)', cursor: 'pointer', flexShrink: 0 }}
>
ORGEXPLORER
OrgExplorer
</span>

{/* Nav links — only visible when data is loaded */}
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default function Footer() {
<div className="flex flex-col items-start gap-2 text-left lg:items-end lg:text-right">
<p
className="
text-xs uppercase tracking-[0.2em]
text-xs tracking-[0.2em]
text-zinc-500
"
>
Expand Down
9 changes: 4 additions & 5 deletions src/pages/SettingsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ export default function SettingsPage() {

<div className="mb-4 color-(--text) text-xs">
<p>
Your GitHub Personal Access Token (PAT) is stored locally on your
device and is never sent to OrgExplorer servers.
Your Personal Access Token (PAT) is stored locally on your device and is never sent to any server. OrgExplorer is a purely static page served to your browser via GitHub Pages and it has no servers.
</p>

<ul className="list-disc ml-5 text-(--text) mt-1 text-xs">
Expand Down Expand Up @@ -237,12 +236,12 @@ export default function SettingsPage() {
)}
</div>

{/* Architect Meta */}
{/* Technical Information */}
<div style={C.card}>
<div style={{ fontWeight: 600, fontSize: 15, marginBottom: 16, letterSpacing: '.03em' }}>Architect Meta</div>
<div style={{ fontWeight: 600, fontSize: 15, marginBottom: 16, letterSpacing: '.03em' }}>Technical Information</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: 8, marginBottom: 16 }}>
{[
['Core Version', 'v2.0.0-stable'],
['Core Version', 'v1.0.0-stable'],
['Architecture', 'Client-side only, no backend'],
['API strategy', '53 req/hr unauthenticated'],
['Cache', 'IndexedDB + React Context'],
Expand Down
Loading