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. -

-
-
-
- ) -} - -export default ClosedNotice 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 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 diff --git a/css/tailwind.css b/css/tailwind.css index 68f065842..29d0cb65a 100644 --- a/css/tailwind.css +++ b/css/tailwind.css @@ -69,9 +69,3 @@ button.secondary { margin-top: 0; margin-bottom: 0; } - -.disabled { - pointer-events: none; - cursor: default; - opacity: 0.6; -} diff --git a/data/headerNavLinks.ts b/data/headerNavLinks.ts index 50160cde0..9a4c7c894 100644 --- a/data/headerNavLinks.ts +++ b/data/headerNavLinks.ts @@ -4,7 +4,7 @@ const headerNavLinks = [ { href: '/about', title: 'About' }, { href: '/blog', title: 'Blog' }, { href: '/faq', title: 'FAQ' }, - { href: '/donate', title: 'Donate', isButton: true }, + { href: '/apply', title: 'Apply', isButton: true }, ] export default headerNavLinks 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.

- diff --git a/pages/apply/index.tsx b/pages/apply/index.tsx index f44d4660b..165377572 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,8 +60,8 @@ export default function Apply({ projects in the Bitcoin space.

Apply for an OpenSats General Grant @@ -76,8 +74,8 @@ export default function Apply({ geared towards developers and maintainers of Bitcoin Core and similar.

Apply for an OpenSats LTS Grant 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.

- )