diff --git a/client/postcss.config.js b/client/postcss.config.js new file mode 100644 index 0000000..2e7af2b --- /dev/null +++ b/client/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/client/public/Icons/Google.png b/client/public/Icons/Google.png new file mode 100644 index 0000000..3085a7c Binary files /dev/null and b/client/public/Icons/Google.png differ diff --git a/client/src/App.jsx b/client/src/App.jsx index b8b8473..4a12b82 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -1,33 +1,13 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from '/vite.svg' + import './App.css' +import Login from './components/Login' function App() { - const [count, setCount] = useState(0) return ( <> -
- - Vite logo - - - React logo - -
-

Vite + React

-
- -

- Edit src/App.jsx and save to test HMR -

-
-

- Click on the Vite and React logos to learn more -

+ + ) } diff --git a/client/src/components/Hompage.jsx b/client/src/components/Hompage.jsx new file mode 100644 index 0000000..ff5ad07 --- /dev/null +++ b/client/src/components/Hompage.jsx @@ -0,0 +1,9 @@ +import React from 'react' + +function Hompage() { + return ( +
Hompage
+ ) +} + +export default Hompage \ No newline at end of file diff --git a/client/src/components/Login.jsx b/client/src/components/Login.jsx new file mode 100644 index 0000000..71f1112 --- /dev/null +++ b/client/src/components/Login.jsx @@ -0,0 +1,48 @@ +import React, { useState } from 'react' +import GIcon from '../../public/Icons/Google.png' +function Login() { + const [logEmail, setLogEmail ] = useState(false) + return ( + <> +
+ + +
+ +
+ + { + logEmail === false ? ( + + ) : + ( + <> + + + + ) + } +
+ +
+ +
+ + ) +} + +export default Login \ No newline at end of file