Skip to content

Commit d5ee924

Browse files
committed
Changes the route from /space/pay to /space
1 parent 82d604b commit d5ee924

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/Home/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const HomeContent = () => {
3131
</Button>
3232
</div>
3333
<div className="p-4 flex justify-center">
34-
<Button href="/space/pay">
34+
<Button href="/space">
3535
<EmojiIcon />
3636
<span className="inline-block ml-2">Pay for Hackerspace</span>
3737
</Button>

src/components/common/PaymentForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export const PaymentForm: FunctionComponent<Props> = ({ campaign, inlineForm = f
136136
return (
137137
<div className={clsx(!inlineForm && 'px-4', inlineForm && 'md:px-0')}>
138138
<p className="text-lg mb-4 text-gray-700 leading-relaxed">
139-
{isPayment ? 'Please make payment for hackerspace here' : 'We truly appreciate your generosity'}
139+
{isPayment ? 'Please make your Hackerspace payment here' : 'We truly appreciate your generosity'}
140140
</p>
141141
<form name="payment" onSubmit={onSubmit}>
142142
{isPayment && (

src/pages/space/pay.tsx renamed to src/pages/space/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { PaymentForm } from '../../components/common/PaymentForm';
88
export default function PaymentPage() {
99
return (
1010
<>
11-
<SEO title="Pay to Coderplex Technologies" />
11+
<SEO title="Pay to Coderplex Hackerspace" />
1212
<div className="pb-20 md:pb-0 md:max-w-3xl mx-auto">
1313
<header>
1414
<Link href="/">

0 commit comments

Comments
 (0)