import React from 'react' import { useState } from 'react'; import { Button, Form, Image, Row, ButtonGroup, Modal, Dropdown, Col } from 'react-bootstrap'; import { Link } from 'react-router-dom'; import '../App.css' import SignUp from '../pages/SignUp' import LoginwithSocial from '../pages/LoginwithSocial'; function MainLayer() { const boxstyled = { border: 'solid', color: 'rgba(195, 195, 195, 0.753)', borderRadius: '20px', marginBottom: '1em', width: '100%', backgroundSize: 'contain', margin: 'auto', textDecorationColor: 'none' } const btnstyled = { background: 'rgb(110, 189, 142)', margin: '1px', display: 'flex', justifyContent: 'center', maxWidth: '100%', borderWidth: '2px', fontSize: '10px', borderColor: 'rgba(195, 195, 195, 0.753)', borderRadius: '20px', textDecorationColor: 'none', color: 'white' } const loginstyled = { margin: 'auto', padding: '2px', diplay: 'flex', justifyContent: 'center', borderRadius: '20px' } const titlesty = { display: 'flex', justifyContent: 'center', background: 'rgb(110, 189, 142)', text: 'center' } const [logshow, setLogshow] = useState(false); const [signshow, setSignshow] = useState(false); const [isLogin, setIsLogin] = useState(false) return ( <> EUE setLogshow(false)} aria-labelledby="example-modal-sizes-title-sm" > setSignshow(false)} aria-labelledby="example-modal-sizes-title-sm" > setLogshow(false)} aria-labelledby="example-modal-sizes-title-sm" > setSignshow(false)} aria-labelledby="example-modal-sizes-title-sm" > ); } export default MainLayer