+
+ HCB is a{' '}
+
+ fiscal sponsor
+
+
+
+
+ - Nonprofit status.
+ - Tax-deductable donations.
+
+
+ HCB provides a financial platform.
+
+
+ - A donations page and invoicing system.
+ - Transfer money electronically.
+ - Order cards for you and your team to make purchases.
+
+ HCB is not a bank.
+
+ -
+ We partner with{' '}
+
+ Column Bank
+ {' '}
+ to offer a bank account to fiscally-sponsored projects.
+
+ -
+ You can't deposit or withdraw cash. But you can receive any kind of
+ electronic payment!
+
+
+ HCB is not for for-profits.
+
+ If you’re looking to set up a for-profit entity, consider{' '}
+
+ Stripe Atlas
+
+ .
+
)
}
diff --git a/components/fiscal-sponsorship/apply/nav-button.js b/components/fiscal-sponsorship/apply/nav-button.js
deleted file mode 100644
index c80c3447..00000000
--- a/components/fiscal-sponsorship/apply/nav-button.js
+++ /dev/null
@@ -1,178 +0,0 @@
-import { useRouter } from 'next/router'
-import { useEffect, useState } from 'react'
-import { Button, Flex, Text, Spinner } from 'theme-ui'
-
-async function sendApplication() {
- // Get the form data from sessionStorage
- const data = {}
- for (let i = 0; i < sessionStorage.length; i++) {
- const key = sessionStorage.key(i)
- if (key.startsWith('bank-signup-')) {
- data[key.replace('bank-signup-', '')] = sessionStorage.getItem(key)
- }
- }
- console.dir('Sending data:', data)
-
- // Send the data
- try {
- const res = await fetch('/api/fiscal-sponsorship/apply', {
- method: 'POST',
- cors: 'no-cors',
- headers: { 'Content-Type': 'application/json' },
- body: JSON.stringify(data)
- })
- } catch (error) {
- console.error(error)
- }
-}
-
-function NavIcon({ isBack }) {
- const style = {
- height: '1em',
- fill: 'white',
- margin: 0,
- flexShrink: 0
- }
-
- return isBack ? (
-