diff --git a/src/components/SocialIcons.tsx b/src/components/SocialIcons.tsx index 242fe4b..cf98447 100644 --- a/src/components/SocialIcons.tsx +++ b/src/components/SocialIcons.tsx @@ -156,7 +156,7 @@ const SocialIcons: React.FC = ({ // Handle name submission const handleSubmit = () => { if (name === 'cali-coast') { - window.location.href = 'https://0.0.0.0/'; + window.location.href = 'https://calicoastrp.d4m13n.dev/'; } else { setError(true); } @@ -242,11 +242,30 @@ const SocialIcons: React.FC = ({ onChange={(e) => setName(e.target.value)} error={error} helperText={error ? "Invalid customer name" : ""} + sx={{ + '& .MuiOutlinedInput-root': { + '&.Mui-focused fieldset': { + borderColor: '#4fd1ff', + }, + }, + '& .MuiInputLabel-root.Mui-focused': { + color: '#4fd1ff', + }, + }} /> -