diff --git a/src/pages/Login/Login.tsx b/src/pages/Login/Login.tsx index 0ac8157..19b271c 100644 --- a/src/pages/Login/Login.tsx +++ b/src/pages/Login/Login.tsx @@ -1,6 +1,7 @@ import React, { useState, ChangeEvent, FormEvent, useContext } from "react"; import axios from "axios"; import { useNavigate, Link } from "react-router-dom"; +import { motion } from "framer-motion"; import { ThemeContext } from "../../context/ThemeContext"; import type { ThemeContextType } from "../../context/ThemeContext"; import { useUser } from "../../context/UserContext"; @@ -87,7 +88,12 @@ const Login: React.FC = () => {
{/* Branding */} -
+
{ > Track your GitHub journey

-
+
{/* Form Card */} -
-

+

Welcome Back

@@ -197,12 +204,10 @@ const Login: React.FC = () => {

-
+
-
+
); }; diff --git a/src/pages/Signup/Signup.tsx b/src/pages/Signup/Signup.tsx index e05f613..9bf90fb 100644 --- a/src/pages/Signup/Signup.tsx +++ b/src/pages/Signup/Signup.tsx @@ -287,10 +287,10 @@ const SignUp: React.FC = () => {

- Already have an account?{" "} + Already have an account? Sign in here @@ -302,7 +302,7 @@ const SignUp: React.FC = () => {

);