Skip to content
Closed
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ yarn-error.log*

# typescript
*.tsbuildinfo
next-env.d.ts
next-env.d.ts
2 changes: 1 addition & 1 deletion app/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default function LoginPage() {
</div>

<div className="space-y-2">
<h1 className="text-2xl font-bold tracking-tight text-card-foreground">Connect Wallet</h1>
<h1 className="text-2xl font-bold tracking-tight text-primary">Connect Wallet</h1>
<p className="text-sm text-muted-foreground">
Connect your Stellar Freighter wallet to access your account securely.
</p>
Expand Down
4 changes: 2 additions & 2 deletions components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export function Navbar() {
<div className="hidden md:flex items-center gap-4">
{address ? (
<Button variant="outline" asChild>
<Link href="/login">
<Link href="/dashboard">
<Wallet className="w-4 h-4 mr-2" />
{formatAddress(address)}
</Link>
Expand Down Expand Up @@ -104,7 +104,7 @@ export function Navbar() {
<div className="pt-4 space-y-2">
{address ? (
<Button variant="outline" className="w-full" asChild>
<Link href="/login">
<Link href="/dashboard">
<Wallet className="w-4 h-4 mr-2" />
{formatAddress(address)}
</Link>
Expand Down
Loading