Skip to content

Commit

Permalink
feat: improve create space
Browse files Browse the repository at this point in the history
  • Loading branch information
0xzio committed Dec 10, 2024
1 parent 5becb5d commit 1873097
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NEXT_PUBLIC_POSTS_PAGE_SIZE=20
NEXT_PUBLIC_THEME=penx-theme-garden

# DATABASE_URL=postgresql://user:[email protected]:5437/demo
DATABASE_URL=postgresql://user:[email protected]:5437/demo

DATABASE_URL="postgresql://user:[email protected]:5432/penx"
# DATABASE_URL="postgresql://user:[email protected]:5432/penx"
8 changes: 6 additions & 2 deletions app/~/(dashboard)/Sidebar/EnableWeb3Entry.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
'use client'

import { ArrowRight, Bitcoin } from 'lucide-react'
import Link from 'next/link'

export function EnableWeb3Entry() {
return (
<div className="mt-2 p-3 rounded-lg bg-foreground/5 hover:bg-foreground/10 flex items-center justify-between cursor-pointer transition-all">
<Link
href="/~/create-space"
className="mt-2 p-3 rounded-lg bg-foreground/5 hover:bg-foreground/10 flex items-center justify-between cursor-pointer transition-all"
>
<div className="space-y-1 text-foreground/80 flex-1">
<div className="flex items-center gap-2">
<div className="font-bold text-base">Enable Web3</div>
Expand All @@ -16,6 +20,6 @@ export function EnableWeb3Entry() {
</ul>
</div>
<ArrowRight size={20} className="text-foreground/50 flex-shrink-0" />
</div>
</Link>
)
}

0 comments on commit 1873097

Please sign in to comment.