Skip to content

Commit

Permalink
0.25 => 0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
carletex committed Jun 6, 2024
1 parent a804dbb commit 7ef451c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/app/_components/CommunityGrant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const CommunityGrant = () => {
<div className="text-center font-spaceMono px-1 max-w-xs sm:max-w-lg lg:max-w-none lg:w-11/12 lg:px-0 lg:text-left space-y-5">
<p className="m-0 text-xs md:text-sm lg:text-base">
Are you a BG member eager to make an impact in the ecosystem? At BuidlGuidl, we&apos;re excited to support
your builds. We offer sponsorships starting at 0.25 ETH for projects that drive the community forward.
your builds. We offer sponsorships starting at 0.15 ETH for projects that drive the community forward.
</p>
<ApplyEligibilityLink />
</div>
Expand Down Expand Up @@ -67,7 +67,7 @@ export const CommunityGrant = () => {
<Image src="/assets/gray-patch.png" alt="Who section background" fill className="w-full" />
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 text-center lg:space-y-2">
<h2 className="font-extrabold text-xs lg:text-lg">Amount</h2>
<p className="my-0 text-[0.4rem] lg:text-sm font-medium">Starting at 0.25 ETH</p>
<p className="my-0 text-[0.4rem] lg:text-sm font-medium">Starting at 0.15 ETH</p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/app/api/grants/new/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type ReqBody = {
};

// Hardcoded default ask amount
const askAmount = 0.25;
const askAmount = 0.15;
// TODO: We could also add extra validation of nonce
export async function POST(req: Request) {
try {
Expand Down

0 comments on commit 7ef451c

Please sign in to comment.