diff --git a/src/app/auth/signin/page.tsx b/src/app/auth/signin/page.tsx index 97e53ae0..07a1827c 100644 --- a/src/app/auth/signin/page.tsx +++ b/src/app/auth/signin/page.tsx @@ -28,7 +28,7 @@ const InfoColumn = () => { bgcolor="#000" color="#fff" > - + ) } diff --git a/src/app/favicon.ico b/src/app/favicon.ico index bc14de49..1d4db676 100644 Binary files a/src/app/favicon.ico and b/src/app/favicon.ico differ diff --git a/src/features/auth/view/SignInTexts.tsx b/src/features/auth/view/SignInTexts.tsx index 602ce70f..66bc0bab 100644 --- a/src/features/auth/view/SignInTexts.tsx +++ b/src/features/auth/view/SignInTexts.tsx @@ -3,7 +3,7 @@ import { Box, Typography, SxProps } from "@mui/material" import { useEffect, useState, useMemo } from "react" -const SignInTexts = () => { +const SignInTexts = ({ prefix }: { prefix: string }) => { const getRandomTextColor = ({ excluding }: { excluding?: string }) => { const colors = ["#01BBFE", "#00AE47", "#FCB23D"] .filter(e => e !== excluding) @@ -42,8 +42,9 @@ const SignInTexts = () => { return ( <> - + { export default SignInTexts const Text = ({ + prefix, text, textColor, children, sx }: { + prefix: string, text: string, textColor?: string, children?: React.ReactNode, @@ -85,7 +88,7 @@ const Text = ({ paddingLeft: { md: 5, lg: 10 }, paddingRight: { md: 5, lg: 10 } }}> - Shape Docs {text} + {prefix} {text} {children} )