Skip to content

Commit 2ba9949

Browse files
committed
Add get it on google play
1 parent 3d4b76f commit 2ba9949

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

web/components/contact.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ export function ContactComponent() {
2929
You can also contact us through this <Link href={formLink}>feedback form</Link> or any of our <Link
3030
href={'/social'}>socials</Link>. Feel free to give your contact information if you'd like us to get back to you.
3131
</p>
32+
<h4 className="">Android App</h4>
33+
<p className={'custom-link mb-4'}>
34+
To release our app, Google requires a closed test with at least 12 testers for 14 days. Please share your Google Play–registered email address so we can add you as a tester and complete the review process.
35+
You email address will NOT be shared with anyone else and will be used solely to send for the purpose of the review process.
36+
</p>
3237
<Col>
3338
<div className={'mb-2'}>
3439
<TextEditor

web/components/nav/sidebar.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import SiteLogo from '../site-logo'
1111
import {Button, ColorType, SizeType} from 'web/components/buttons/button'
1212
import {signupRedirect} from 'web/lib/util/signup'
1313
import {useProfile} from 'web/hooks/use-profile'
14+
import Image from 'next/image'
1415

1516
export default function Sidebar(props: {
1617
className?: string
@@ -46,6 +47,14 @@ export default function Sidebar(props: {
4647
{navOptions.map((item) => (
4748
<SidebarItem key={item.name} item={item} currentPage={currentPage}/>
4849
))}
50+
<Image
51+
src="https://firebasestorage.googleapis.com/v0/b/compass-130ba.firebasestorage.app/o/misc%2FGoogle_Play_Store_badge_EN.svg.png?alt=media&token=3e0e8605-800a-422b-84d1-8ecec8af3e80"
52+
alt="divider"
53+
width={160}
54+
height={80}
55+
className="mx-auto pt-4 hover:opacity-70 cursor-pointer invert dark:invert-0"
56+
onClick={() => router.push('/contact')}
57+
/>
4958

5059
{user === null && <SignUpButton className="mt-4" text="Sign up"/>}
5160
{/*{user === null && <SignUpAsMatchmaker className="mt-2" />}*/}

0 commit comments

Comments
 (0)