From e522e33e4e6a8e2036a5d51e31b3b28f55b13119 Mon Sep 17 00:00:00 2001
From: ARVIN <141419722+Arvin21M@users.noreply.github.com>
Date: Sat, 3 Jan 2026 16:58:54 -0500
Subject: [PATCH 01/10] Open applications in Jan. 2026
Removed ClosedNotice component and updated links for grant applications.
---
pages/apply/index.tsx | 22 +++-------------------
1 file changed, 3 insertions(+), 19 deletions(-)
diff --git a/pages/apply/index.tsx b/pages/apply/index.tsx
index f44d4660b..ddd317f27 100644
--- a/pages/apply/index.tsx
+++ b/pages/apply/index.tsx
@@ -6,7 +6,6 @@ import { MDXLayoutRenderer } from 'pliny/mdx-components'
import { MDXComponents } from '@/components/MDXComponents'
import PageSection from '@/components/PageSection'
import CustomLink from '@/components/Link'
-import ClosedNotice from '@/components/ClosedNotice'
const DEFAULT_LAYOUT = 'PageLayout'
@@ -51,7 +50,6 @@ export default function Apply({
Application FAQ to
find answers to common questions.
-
General Grant
@@ -62,26 +60,12 @@ export default function Apply({
projects in the Bitcoin space.
Apply for an OpenSats General Grant
Long-Term Support
-
- We have a limited number of long-term support grants available for
- projects that are critical to the Bitcoin ecosystem. These grants are
- geared towards developers and maintainers of Bitcoin Core and similar.
-
-
- Apply for an OpenSats LTS Grant
-
-
- >
- )
-}
+
+ We have a limited number of long-term support grants available for
+ projects that are critical to the Bitcoin ecosystem. These grants are
+ geared towards developers and maintainers of Bitcoin Core and similar.
+
+
+ Apply for an OpenSats LTS Grant
+
+
+ >
+ )
+}
From fbe76cb83c9b775cd9a1957f5095c11ce8340b12 Mon Sep 17 00:00:00 2001
From: ARVIN <141419722+Arvin21M@users.noreply.github.com>
Date: Sat, 3 Jan 2026 17:18:00 -0500
Subject: [PATCH 03/10] Remove ClosedNotice component from grant page
---
pages/apply/grant.tsx | 2 --
1 file changed, 2 deletions(-)
diff --git a/pages/apply/grant.tsx b/pages/apply/grant.tsx
index 004fdc322..15c492d3a 100644
--- a/pages/apply/grant.tsx
+++ b/pages/apply/grant.tsx
@@ -1,7 +1,6 @@
import dynamic from 'next/dynamic'
import PageSection from '@/components/PageSection'
import CustomLink from '@/components/Link'
-import ClosedNotice from '@/components/ClosedNotice'
const GrantApplicationForm = dynamic(
() => import('@/components/GrantApplicationForm'),
@@ -32,7 +31,6 @@ export default function Apply() {
Application FAQ{' '}
before sending in an application.
-
>
From e1f56969845aaa351c9447b85b548e33827e49b9 Mon Sep 17 00:00:00 2001
From: ARVIN <141419722+Arvin21M@users.noreply.github.com>
Date: Sat, 3 Jan 2026 17:19:53 -0500
Subject: [PATCH 04/10] Remove ClosedNotice from LTS page
---
pages/apply/lts.tsx | 2 --
1 file changed, 2 deletions(-)
diff --git a/pages/apply/lts.tsx b/pages/apply/lts.tsx
index 807b14fb9..02d46f591 100644
--- a/pages/apply/lts.tsx
+++ b/pages/apply/lts.tsx
@@ -2,7 +2,6 @@ import PageSection from '@/components/PageSection'
import LTSApplicationForm from '@/components/LTSApplicationForm'
import Link from '@/components/Link'
import CustomLink from '@/components/Link'
-import ClosedNotice from '@/components/ClosedNotice'
export default function Apply() {
return (
@@ -45,7 +44,6 @@ export default function Apply() {
If the above does not apply to you, please consider applying for a{' '}
General Grant instead.
-
)
From c8655c60f356e6c36f974ac4fbfad5366bc6af97 Mon Sep 17 00:00:00 2001
From: ARVIN <141419722+Arvin21M@users.noreply.github.com>
Date: Sat, 3 Jan 2026 17:21:45 -0500
Subject: [PATCH 05/10] Enable grant submit button
---
components/GrantApplicationForm.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/components/GrantApplicationForm.tsx b/components/GrantApplicationForm.tsx
index 396c1ca4c..df44c00fd 100644
--- a/components/GrantApplicationForm.tsx
+++ b/components/GrantApplicationForm.tsx
@@ -490,7 +490,7 @@ export default function ApplicationForm() {
Submit Grant Application
From e10bfaa1ef91aa6a3cd540bfebbca2431afd251e Mon Sep 17 00:00:00 2001
From: ARVIN <141419722+Arvin21M@users.noreply.github.com>
Date: Sat, 3 Jan 2026 17:23:02 -0500
Subject: [PATCH 06/10] Enable LTS submit button
---
components/LTSApplicationForm.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/components/LTSApplicationForm.tsx b/components/LTSApplicationForm.tsx
index 311bd037a..002a78f12 100644
--- a/components/LTSApplicationForm.tsx
+++ b/components/LTSApplicationForm.tsx
@@ -264,7 +264,7 @@ export default function ApplicationForm() {
Submit LTS Application
From a2c13a79274f3d03d597272c11392a897c623c5b Mon Sep 17 00:00:00 2001
From: ARVIN <141419722+Arvin21M@users.noreply.github.com>
Date: Sat, 3 Jan 2026 17:43:40 -0500
Subject: [PATCH 07/10] Add Apply header button when applications are open
---
data/headerNavLinks.ts | 1 +
1 file changed, 1 insertion(+)
diff --git a/data/headerNavLinks.ts b/data/headerNavLinks.ts
index 50160cde0..53abdeeca 100644
--- a/data/headerNavLinks.ts
+++ b/data/headerNavLinks.ts
@@ -4,6 +4,7 @@ const headerNavLinks = [
{ href: '/about', title: 'About' },
{ href: '/blog', title: 'Blog' },
{ href: '/faq', title: 'FAQ' },
+ { href: '/apply', title: 'Apply', isButton: true },
{ href: '/donate', title: 'Donate', isButton: true },
]
From 28e1c939321d0f56ae837deb4e606c1170cc5efb Mon Sep 17 00:00:00 2001
From: ARVIN <141419722+Arvin21M@users.noreply.github.com>
Date: Sat, 3 Jan 2026 17:47:27 -0500
Subject: [PATCH 08/10] Show only Apply button in header
---
data/headerNavLinks.ts | 1 -
1 file changed, 1 deletion(-)
diff --git a/data/headerNavLinks.ts b/data/headerNavLinks.ts
index 53abdeeca..9a4c7c894 100644
--- a/data/headerNavLinks.ts
+++ b/data/headerNavLinks.ts
@@ -5,7 +5,6 @@ const headerNavLinks = [
{ href: '/blog', title: 'Blog' },
{ href: '/faq', title: 'FAQ' },
{ href: '/apply', title: 'Apply', isButton: true },
- { href: '/donate', title: 'Donate', isButton: true },
]
export default headerNavLinks
From 312dfdd0c8de88b7a9069168f02ace48f6419cb7 Mon Sep 17 00:00:00 2001
From: ARVIN <141419722+Arvin21M@users.noreply.github.com>
Date: Sat, 3 Jan 2026 17:55:51 -0500
Subject: [PATCH 09/10] Delete components/ClosedNotice.tsx
---
components/ClosedNotice.tsx | 44 -------------------------------------
1 file changed, 44 deletions(-)
delete mode 100644 components/ClosedNotice.tsx
diff --git a/components/ClosedNotice.tsx b/components/ClosedNotice.tsx
deleted file mode 100644
index fa9a983f0..000000000
--- a/components/ClosedNotice.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import Link from './Link'
-
-const ClosedNotice = () => {
- return (
-
-
-
-
-
-
-
Applications are currently closed!
-
- Grant applications are currently closed as per our{' '}
-
- quarterly schedule
-
- . Please have a look at{' '}
- last year's report to
- see what kind of projects we support.
-
-
- If you want to prepare a submission, please get familiar with our{' '}
- application criteria as well as
- our grant selection process.
-
-
- We will re-open applications on the 1st week of next month.
-