Skip to content

Commit

Permalink
Update signup text
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed Apr 9, 2023
1 parent 81be1d8 commit 1950404
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 12 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/components/Navigation/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import AccountDropdown from './AccountDropdown.astro';
class='flex h-8 w-28 cursor-pointer items-center justify-center rounded-full bg-gradient-to-r from-blue-500 to-blue-700 py-2 px-4 text-sm font-medium text-white hover:from-blue-500 hover:to-blue-600'
href='/signup'
>
<span>Register</span>
<span>Sign Up</span>
</a>
</li>
</ul>
Expand Down Expand Up @@ -113,7 +113,7 @@ import AccountDropdown from './AccountDropdown.astro';
href='/signup'
class='text-xl text-red-300 hover:text-red-400 md:text-lg'
>
Register
Sign Up
</a>
</li>
</ul>
Expand Down
15 changes: 7 additions & 8 deletions src/pages/signup.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import Divider from '../components/Login/Divider.astro';
import GoogleLogin from '../components/Login/GoogleLogin.astro';
import EmailSignupForm from '../components/Login/EmailSignupForm';
import BaseLayout from '../layouts/BaseLayout.astro';
import { GitHubButton } from '../components/SocialAuth/GitHubButton';
import { GoogleButton } from '../components/SocialAuth/GoogleButton';
import { GitHubButton } from '../components/AuthenticationFlow/GitHubButton';
import { GoogleButton } from '../components/AuthenticationFlow/GoogleButton';
---

<BaseLayout
title='Signup - roadmap.sh'
description='Register yourself to receive occasional emails about new roadmaps, updates, guides and videos'
description='Create an account to track your progress, showcase your skillset'
permalink={'/signup'}
noIndex={true}
>
Expand All @@ -19,13 +19,12 @@ import { GoogleButton } from '../components/SocialAuth/GoogleButton';
class='mx-auto flex flex-col items-start justify-start py-12 sm:max-w-[400px] sm:items-center sm:justify-center'
>
<div class='mb-2 text-left sm:mb-5 sm:text-center'>
<h1 class='mb-2 text-3xl font-semibold sm:mb-4 sm:text-5xl'>Signup</h1>
<h1 class='mb-2 text-3xl font-semibold sm:mb-4 sm:text-5xl'>Sign Up</h1>
<p class='text-md hidden text-gray-600 sm:block'>
Register yourself to receive occasional emails about new roadmaps,
updates, guides and videos
Create an account to track your progress, showcase your skill-set and be a part of the community.
</p>
<p class='block text-sm text-gray-600 sm:hidden'>
Register yourself for occasional updates about roadmaps, guides and
<p class='block text-sm text-gray-600 mb-3 sm:hidden'>
Create an account to track your progress, showcase your skill-set and be a part of the community.
videos.
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/verification-pending.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import SettingLayout from '../layouts/SettingLayout.astro';
import { VerificationEmailMessage } from '../components/RegistrationFlow/VerificationEmailMessage';
import { VerificationEmailMessage } from '../components/AuthenticationFlow/VerificationEmailMessage';
---

<SettingLayout title='Verify Email'>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/verify-account.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { TriggerVerifyAccount } from '../components/RegistrationFlow/TriggerVerifyAccount';
import { TriggerVerifyAccount } from '../components/AuthenticationFlow/TriggerVerifyAccount';
import SettingLayout from '../layouts/SettingLayout.astro';
---

Expand Down

0 comments on commit 1950404

Please sign in to comment.