Chore/redirects (#113)
* Update _redirects for deploy * Update signin/signout links * Redirect non-emailVerified users to www (#108) * Add HMTL Intro (#109)
This commit is contained in:
committed by
Mrugesh Mohapatra
parent
1fbeee14a2
commit
975b306a6e
@@ -1,8 +1,9 @@
|
||||
/* global HOME_PATH */
|
||||
import React from 'react';
|
||||
|
||||
function Login() {
|
||||
return (
|
||||
<a href='https://beta.freecodecamp.org/signin' target='_blank'>
|
||||
<a href={HOME_PATH + '/signin'} target='_blank'>
|
||||
Login
|
||||
</a>
|
||||
);
|
||||
|
@@ -1,7 +1,8 @@
|
||||
/* global HOME_PATH */
|
||||
import React from 'react';
|
||||
|
||||
function SignedIn() {
|
||||
return <a href='https://beta.freecodecamp.org/settings'>Settings</a>;
|
||||
return <a href={HOME_PATH + '/settings'}>Settings</a>;
|
||||
}
|
||||
|
||||
SignedIn.displayName = 'SignedIn';
|
||||
|
@@ -1 +1 @@
|
||||
/external/* https://beta.freecodecamp.org/external/:splat 200
|
||||
/external/* https://www.freecodecamp.org/external/:splat 200
|
||||
|
Reference in New Issue
Block a user