Skip to content

Commit 068aa6f

Browse files
committed
Changes the route from /pay to /space/pay
1 parent e763bae commit 068aa6f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/components/Home/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ export const HomeContent = () => {
3131
</Button>
3232
</div>
3333
<div className="p-4 flex justify-center">
34-
<Button href="/pay">
34+
<Button href="/space/pay">
3535
<EmojiIcon />
36-
<span className="inline-block ml-2">Make A Payment</span>
36+
<span className="inline-block ml-2">Pay for Hackerspace</span>
3737
</Button>
3838
</div>
3939
</div>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import React from 'react';
22
import Link from 'next/link';
3-
import { BackIcon } from '../components/Icons/common';
3+
import { BackIcon } from '../../components/Icons/common';
44

5-
import { SEO } from '../components/SEO';
6-
import { PaymentForm } from '../components/common/PaymentForm';
5+
import { SEO } from '../../components/SEO';
6+
import { PaymentForm } from '../../components/common/PaymentForm';
77

8-
export default function DonatePage() {
8+
export default function PaymentPage() {
99
return (
1010
<>
1111
<SEO title="Pay to Coderplex Technologies" />

0 commit comments

Comments
 (0)