diff --git a/.env b/.env index 0db2203..69244f5 100644 --- a/.env +++ b/.env @@ -13,4 +13,7 @@ REACT_APP_PURCHASE_URL=https://themeforest.net/item/metronic-responsive-admin-da REACT_APP_PREVIEW_URL=https://preview.keenthemes.com/metronic8/react/demo1/ REACT_APP_PREVIEW_REACT_URL=https://preview.keenthemes.com/metronic8/react REACT_APP_PREVIEW_DOCS_URL=https://preview.keenthemes.com/metronic8/react/docs -REACT_APP_THEME_API_URL=https://preview.keenthemes.com/theme-api/api \ No newline at end of file +REACT_APP_THEME_API_URL=https://preview.keenthemes.com/theme-api/api +REACT_APP_TERMS_LINK='https://www.float.sg/terms' +REACT_APP_CONTACT_LINK='https://www.float.sg/contact' +REACT_APP_ABOUT_LINK='https://www.float.sg/about' \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico index 94838e5..c75e87b 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html index 49fad37..5356bc6 100644 --- a/public/index.html +++ b/public/index.html @@ -7,7 +7,7 @@ -
{/* end::Image */}
diff --git a/src/app/modules/auth/components/Login.tsx b/src/app/modules/auth/components/Login.tsx
index 97427d7..220ea9c 100644
--- a/src/app/modules/auth/components/Login.tsx
+++ b/src/app/modules/auth/components/Login.tsx
@@ -7,6 +7,7 @@ import {useFormik} from 'formik'
import {getUserByToken, login} from '../core/_requests'
import {toAbsoluteUrl} from '../../../../_metronic/helpers'
import {useAuth} from '../core/Auth'
+// import Logo from '../../../../../public/media/logos/favicon.ico'
const loginSchema = Yup.object().shape({
email: Yup.string()
@@ -21,7 +22,7 @@ const loginSchema = Yup.object().shape({
})
const initialValues = {
- email: 'admin@demo.com',
+ email: 'johndoe@email.com',
password: 'demo',
}
@@ -64,8 +65,8 @@ export function Login() {
>
{/* begin::Heading */}