diff --git a/components/fiscal-sponsorship/apply/teenager-or-adult-form.js b/components/fiscal-sponsorship/apply/teenager-or-adult-form.js
index 275cb751..0552c517 100644
--- a/components/fiscal-sponsorship/apply/teenager-or-adult-form.js
+++ b/components/fiscal-sponsorship/apply/teenager-or-adult-form.js
@@ -1,11 +1,9 @@
import { useEffect } from 'react'
import { Select } from 'theme-ui'
import Field from './field'
-import useOrganizationI18n from '../organizationI18n'
import { useTeenagerLedContext } from './teenager-led-context'
export default function TeenagerOrAdultForm({ requiredFields }) {
- const org = useOrganizationI18n()
const { teenagerLed, setTeenagerLed } = useTeenagerLedContext()
const onTeenagerLedChange = e => {
@@ -52,6 +50,11 @@ export default function TeenagerOrAdultForm({ requiredFields }) {
))}
+
+ NOTE: this kinda ugly rn, i plan on making this teenager question look a
+ bit better by having two boxes side by side. one box/button for teen,
+ another for adult
+
>
)
}
From 27aa406f52e73cf25507fcb0e19d323a90ddb867 Mon Sep 17 00:00:00 2001
From: Gary Tou
Date: Fri, 7 Mar 2025 01:53:04 -0800
Subject: [PATCH 12/24] Copy edits
---
components/fiscal-sponsorship/apply/hcb-info.js | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/components/fiscal-sponsorship/apply/hcb-info.js b/components/fiscal-sponsorship/apply/hcb-info.js
index 4e19f4be..15674e31 100644
--- a/components/fiscal-sponsorship/apply/hcb-info.js
+++ b/components/fiscal-sponsorship/apply/hcb-info.js
@@ -8,7 +8,7 @@ export default function HCBInfo() {
gridArea: 'info',
alignItems: 'start',
mark: { color: '#ec555c', bg: 'inherit' },
- ul: { pl: [3, 0], color: 'muted', mb: 4 },
+ ul: { pl: 3, color: 'muted', mb: 4 },
p: { color: 'muted', mb: 0 }
}}
>
@@ -28,14 +28,15 @@ export default function HCBInfo() {
- - Nonprofit status.
- - Tax-deductible donations.
+ - Gives your project nonprofit status.
+ - Enables tax-deductible donations.
HCB provides a financial platform.
- - A donations page and invoicing system.
+ - Accessed via a beautiful, modern interface.
+ - Provides a donation page and invoicing system.
- Transfer money electronically.
- Order cards for you and your team to make purchases.
From 4c79cf99e06108e9ae797a92c230d71407606ce7 Mon Sep 17 00:00:00 2001
From: Gary Tou
Date: Fri, 7 Mar 2025 02:14:11 -0800
Subject: [PATCH 13/24] Copy edit + Hide HCB info on mobile after first form
step
---
.../apply/form-container.js | 6 +-
.../fiscal-sponsorship/apply/hcb-info.js | 35 ++---
.../apply/teenager-or-adult-form.js | 2 +-
pages/fiscal-sponsorship/apply/index.js | 137 +++++++++---------
4 files changed, 86 insertions(+), 94 deletions(-)
diff --git a/components/fiscal-sponsorship/apply/form-container.js b/components/fiscal-sponsorship/apply/form-container.js
index a4b468db..b63268b9 100644
--- a/components/fiscal-sponsorship/apply/form-container.js
+++ b/components/fiscal-sponsorship/apply/form-container.js
@@ -11,7 +11,7 @@ const formContainer = forwardRef(({ children, ...props }, ref) => {
sx={{
bg: 'snow',
px: [3, 5],
- py: 5,
+ py: [1, 5],
minHeight: '100dvb',
'&.has-errors div[aria-required="true"] input:placeholder-shown': {
borderColor: 'primary'
@@ -33,9 +33,7 @@ const formContainer = forwardRef(({ children, ...props }, ref) => {
px: 0
}}
>
-
- {children}
-
+ {children}