Skip to content

Commit

Permalink
Added new grants and fixes some copy (#86)
Browse files Browse the repository at this point in the history
Co-authored-by: Carlos Sánchez <[email protected]>
  • Loading branch information
austintgriffith and carletex authored Mar 22, 2024
1 parent 6761612 commit c1b049c
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 7 deletions.
3 changes: 2 additions & 1 deletion packages/nextjs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ yarn-error.log*
.pnpm-debug.log*

# local env files
.env
.env.local
.env.development.local
.env.test.local
Expand All @@ -35,4 +36,4 @@ yarn-error.log*
.vercel

# typescript
*.tsbuildinfo
*.tsbuildinfo
2 changes: 1 addition & 1 deletion packages/nextjs/app/_components/CommunityGrant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const CommunityGrant = () => {
{/* Description */}
<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 impact in the ecosystem? At BuidlGuidl, we&apos;re excited to support
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 sponsorship of up to 1 ETH for projects that drive the community forward.
</p>
<Link
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/app/_components/HomepageHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const HomepageHero = () => (
<div className="space-y-2 lg:max-w-[55%] flex flex-col items-center lg:items-start">
<div className="relative">
<h2 className="text-3xl md:text-4xl lg:text-6xl lg:leading-[1.2] text-center lg:text-left font-ppEditorial">
Funding meaningful projects <br /> across the ecosystem
Funding meaningful projects <br /> across the Ethereum ecosystem
</h2>
<Image className="absolute -top-3 -right-7" src="/assets/sparkle.png" alt="sparkle" width={32} height={32} />
</div>
Expand Down
9 changes: 6 additions & 3 deletions packages/nextjs/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ export const metadata: Metadata = {
default: "BuidlGuidl Grants",
template: "%s | BuidlGuidl Grants",
},
description: "BuidlGuidl Grants offers funding to its members to build meaningful projects across the ecosystem.",
description:
"BuidlGuidl Grants offers funding to its members to build meaningful projects across the Ethereum ecosystem.",
openGraph: {
title: {
default: "BuidlGuidl Grants",
template: "%s | BuidlGuidl Grants",
},
description: "BuidlGuidl Grants offers funding to its members to build meaningful projects across the ecosystem.",
description:
"BuidlGuidl Grants offers funding to its members to build meaningful projects across the Ethereum ecosystem.",
images: [
{
url: imageUrl,
Expand All @@ -35,7 +37,8 @@ export const metadata: Metadata = {
default: "BuidlGuidl Grants",
template: "%s | BuidlGuidl Grants",
},
description: "BuidlGuidl Grants offers funding to its members to build meaningful projects across the ecosystem.",
description:
"BuidlGuidl Grants offers funding to its members to build meaningful projects across the Ethereum ecosystem.",
},
icons: {
icon: [{ url: "/favicon.png", sizes: "32x32", type: "image/png" }],
Expand Down
7 changes: 6 additions & 1 deletion packages/nextjs/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ export const Footer = () => {
<ul className="menu menu-horizontal w-full">
<div className="flex justify-center items-center gap-2 text-sm w-full">
<div className="text-center">
<a href="https://github.com/scaffold-eth/se-2" target="_blank" rel="noreferrer" className="link">
<a
href="https://github.com/BuidlGuidl/grants.buidlguidl.com"
target="_blank"
rel="noreferrer"
className="link"
>
Fork me
</a>
</div>
Expand Down
Binary file added packages/nextjs/public/assets/circomkit2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/nextjs/public/assets/etherdeck.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/nextjs/public/assets/findaudit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions packages/nextjs/services/database/ecosystemGrants.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,26 @@
"twitterLink": "https://x.com/w1nt3r_eth",
"imgLink": "/assets/winter.png"
}
, {
"name": "jtriley.eth",
"description": "Ether Deck Mk2: A reasonably optimized, extensible smart account.",
"amountGranted": "2.262",
"twitterLink": "https://twitter.com/jtriley_eth",
"imgLink": "/assets/etherdeck.png"
}
, {
"name": "erhant.eth",
"description": "Circomkit is a Circom circuit development & testing toolkit. It provides a simple CLI that abstracts away pathing & setups for SnarkJS commands...",
"amountGranted": "2.262",
"twitterLink": "https://twitter.com/0xerhant",
"imgLink": "/assets/circomkit2.png"
}
, {
"name": "bytes032.eth",
"description": "FindAudit is a public good platform that allows protocols to connect with over 100 auditors/audit firms in less than 48 hours.",
"amountGranted": "2.262",
"twitterLink": "https://twitter.com/bytes032",
"imgLink": "/assets/findaudit.png"
}
]
}

0 comments on commit c1b049c

Please sign in to comment.