Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
83f5c18
Create MarkeeSign.tsx
pglavin2 Feb 19, 2026
1a06bb1
Create MarkeeModal.tsx
pglavin2 Feb 19, 2026
1c99af4
Update client-page.tsx
pglavin2 Feb 19, 2026
507450e
Update MarkeeModal.tsx
pglavin2 Feb 19, 2026
8eec28e
Update MarkeeModal.tsx
pglavin2 Feb 19, 2026
02fb873
Update client-page.tsx
pglavin2 Feb 20, 2026
fa8b694
Update MarkeeSign.tsx
pglavin2 Feb 20, 2026
ee1a9af
Update MarkeeModal.tsx
pglavin2 Feb 20, 2026
6e8e32e
Update MarkeeModal.tsx
pglavin2 Feb 20, 2026
2936af1
Update MarkeeSign.tsx
pglavin2 Feb 20, 2026
4a476e2
Update MarkeeSign.tsx
pglavin2 Feb 20, 2026
5c5cb33
Update MarkeeSign.tsx
pglavin2 Feb 20, 2026
320d313
Update MarkeeSign.tsx
pglavin2 Feb 20, 2026
a0c50c2
Update MarkeeSign.tsx
pglavin2 Feb 20, 2026
8a5675f
Update MarkeeModal.tsx
pglavin2 Feb 20, 2026
86f36cc
Update MarkeeModal.tsx
pglavin2 Feb 21, 2026
cc3704e
Update MarkeeSign.tsx
pglavin2 Feb 21, 2026
3cc748e
Update MarkeeSign.tsx
pglavin2 Feb 21, 2026
2900c62
Update MarkeeModal.tsx
pglavin2 Feb 21, 2026
b2cca97
Update MarkeeModal.tsx
pglavin2 Feb 24, 2026
66f713f
Update MarkeeModal.tsx
pglavin2 Feb 24, 2026
4b60466
Update MarkeeSign.tsx
pglavin2 Feb 24, 2026
e4e358c
Update MarkeeModal.tsx
pglavin2 Feb 24, 2026
1cbea22
Update MarkeeModal.tsx
pglavin2 Feb 24, 2026
9d880a5
Update MarkeeModal.tsx
pglavin2 Feb 24, 2026
1898918
Update MarkeeModal.tsx
pglavin2 Feb 24, 2026
acdbedc
Update MarkeeModal.tsx
pglavin2 Feb 24, 2026
333af0a
Update MarkeeModal.tsx
pglavin2 Feb 24, 2026
c6056a9
Update MarkeeModal.tsx
pglavin2 Feb 24, 2026
f542d39
web: stabilize markee base flow and modal UX
Corantin Feb 25, 2026
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
8 changes: 4 additions & 4 deletions apps/web/app/(app)/gardens/client-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
} from "@/assets";
import { Button, Communities } from "@/components";
import { LightCommunity } from "@/components/Communities";
import MarkeeSign from "@/components/MarkeeSign";
import { useDisableButtons } from "@/hooks/useDisableButtons";
import { useFlag } from "@/hooks/useFlag";
import { useSubgraphQueryMultiChain } from "@/hooks/useSubgraphQueryMultiChain";
Expand All @@ -45,10 +46,11 @@ const Header = () => {
<h1 className="max-w-xl text-center text-neutral-content">
Welcome to Gardens
</h1>
<p className="text-xl text-center">
<p className="text-xl text-center">
Where communities grow through collective decision-making
</p>
<Link href="/gardens/create-community" className="mt-6 z-10">
<MarkeeSign />
<Link href="/gardens/create-community" className="mt-10 z-10">
<Button
btnStyle="filled"
disabled={!isConnected}
Expand Down Expand Up @@ -144,7 +146,6 @@ export default function ClientPage() {
protopianOwners.length > 0 &&
x.chain.safePrefix
) {
// Council Safe supported
const councilSafeAddress = x.councilSafe as Address;
try {
const communityCouncil = await readContract({
Expand All @@ -156,7 +157,6 @@ export default function ClientPage() {

return {
...x,
// Consider Protopian can be transferred to councilSafe
isProtopian: !![
...communityCouncil,
councilSafeAddress,
Expand Down
Loading
Loading