Skip to content

Commit 15b3969

Browse files
committed
feat: ✨ Bump version to 1.0.10 and add documentation link in DashboardHeader
1 parent b50b74c commit 15b3969

3 files changed

Lines changed: 17 additions & 5 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pinkpixel/keyper",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"description": "🔐 Modern self-hosted credential manager with zero-knowledge encryption, multi-user support, and emergency recovery. Store API keys, passwords, and secrets securely with your own Supabase database.",
55
"type": "module",
66
"main": "dist/index.html",

src/components/dashboard/DashboardHeader.tsx

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import React from 'react';
33
import { User } from '@supabase/supabase-js';
44
import { Button } from '@/components/ui/button';
5-
import { Plus, Shield, RefreshCw } from 'lucide-react';
5+
import { Plus, Shield, RefreshCw, BookOpen } from 'lucide-react';
66

77
interface DashboardHeaderProps {
88
user: User;
@@ -19,7 +19,7 @@ export const DashboardHeader = ({ user, onAddCredential, onRefresh }: DashboardH
1919
<div className="flex items-center space-x-3">
2020
<div className="p-1 bg-cyan-500/20 rounded-lg border border-cyan-500/30">
2121
<img
22-
src="/public/logo.png"
22+
src="/logo.png"
2323
alt="Keyper Logo"
2424
className="h-11 w-11 rounded-full object-contain"
2525
/>
@@ -46,6 +46,18 @@ export const DashboardHeader = ({ user, onAddCredential, onRefresh }: DashboardH
4646
<span className="hidden sm:inline">Refresh</span>
4747
</Button>
4848

49+
<Button asChild variant="outline" size="sm" className="flex items-center gap-2">
50+
<a
51+
href="https://keyper-docs.pinkpixel.dev"
52+
target="_blank"
53+
rel="noopener noreferrer"
54+
aria-label="Open Keyper documentation website"
55+
>
56+
<BookOpen className="h-4 w-4" />
57+
<span className="hidden sm:inline">Docs</span>
58+
</a>
59+
</Button>
60+
4961
<Button
5062
onClick={onAddCredential}
5163
className="bg-cyan-600 hover:bg-cyan-700 text-white"

0 commit comments

Comments
 (0)