diff --git a/frontend/public/assets/oktopus.png b/frontend/public/assets/oktopus.png new file mode 100644 index 0000000..5352dba Binary files /dev/null and b/frontend/public/assets/oktopus.png differ diff --git a/frontend/src/contexts/auth-context.js b/frontend/src/contexts/auth-context.js index d79f0fb..8e46004 100644 --- a/frontend/src/contexts/auth-context.js +++ b/frontend/src/contexts/auth-context.js @@ -128,7 +128,7 @@ export const AuthProvider = (props) => { }; const signIn = async (email, password) => { - if (email !== 'demo@devias.io' || password !== 'Password123!') { + if (email !== 'demo@oktopus.io' || password !== 'Password123!') { throw new Error('Please check your email and password'); } diff --git a/frontend/src/layouts/auth/layout.js b/frontend/src/layouts/auth/layout.js index c5a3f55..689ab52 100644 --- a/frontend/src/layouts/auth/layout.js +++ b/frontend/src/layouts/auth/layout.js @@ -59,7 +59,7 @@ export const Layout = (props) => { lg={6} sx={{ alignItems: 'center', - background: 'radial-gradient(50% 50% at 50% 50%, #122647 0%, #090E23 100%)', + background: 'radial-gradient(50% 50% at 50% 50%, #306D6F 0%, #255355 100%)', color: 'white', display: 'flex', justifyContent: 'center', @@ -69,36 +69,15 @@ export const Layout = (props) => { }} > - - Welcome to{' '} - - Devias Kit - - - - A professional kit that comes with ready-to-use MUI components. - + + diff --git a/frontend/src/pages/auth/login.js b/frontend/src/pages/auth/login.js index f4df102..930b6e6 100644 --- a/frontend/src/pages/auth/login.js +++ b/frontend/src/pages/auth/login.js @@ -25,7 +25,7 @@ const Page = () => { const [method, setMethod] = useState('email'); const formik = useFormik({ initialValues: { - email: 'demo@devias.io', + email: 'demo@oktopus.io', password: 'Password123!', submit: null }, @@ -71,7 +71,7 @@ const Page = () => { <> - Login | Devias Kit + Login | Oktopus { color="text.secondary" variant="body2" > - Don't have an account? + Não possui uma conta?   { underline="hover" variant="subtitle2" > - Register + Registre-se - { label="Phone Number" value="phoneNumber" /> - + */} {method === 'email' && (
{ sx={{ mt: 3 }} >
- You can use demo@devias.io and password Password123! + You can use demo@oktopus.io and password Password123!
diff --git a/frontend/src/sections/account/account-profile-details.js b/frontend/src/sections/account/account-profile-details.js index 0d29bc9..58532b5 100644 --- a/frontend/src/sections/account/account-profile-details.js +++ b/frontend/src/sections/account/account-profile-details.js @@ -34,7 +34,7 @@ export const AccountProfileDetails = () => { const [values, setValues] = useState({ firstName: 'Anika', lastName: 'Visser', - email: 'demo@devias.io', + email: 'demo@oktopus.io', phone: '', state: 'los-angeles', country: 'USA' diff --git a/frontend/src/theme/colors.js b/frontend/src/theme/colors.js index 7915b5a..0360353 100644 --- a/frontend/src/theme/colors.js +++ b/frontend/src/theme/colors.js @@ -25,11 +25,11 @@ export const neutral = { }; export const indigo = withAlphas({ - lightest: '#F5F7FF', - light: '#EBEEFE', - main: '#6366F1', - dark: '#4338CA', - darkest: '#312E81', + lightest: '#FFFFFF', + light: '#306D6F', + main: '#306D6F', + dark: '#255355', + darkest: '#00a0b8', contrastText: '#FFFFFF' });